This commit is contained in:
2026-02-23 02:29:50 +01:00
parent 8a0e48b3cb
commit 77c1615675
16 changed files with 1671 additions and 838 deletions

14
measurement/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.12-slim
RUN apt-get update && apt-get install -y cron && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
COPY crontab /etc/cron.d/speedtest
RUN chmod 0644 /etc/cron.d/speedtest && crontab /etc/cron.d/speedtest
CMD ["cron", "-f"]