added ping uptime test

This commit is contained in:
2026-07-09 19:05:59 +02:00
parent 90df6ad45f
commit 19fec18cf7
7 changed files with 1138 additions and 1116 deletions

View File

@@ -1,8 +1,8 @@
FROM python:3.12-slim
WORKDIR /app
# Install cron, curl, and the official Ookla Speedtest repository
RUN apt-get update && apt-get install -y cron curl \
# Install cron, curl, iputils-ping, and the official Ookla Speedtest repository
RUN apt-get update && apt-get install -y cron curl iputils-ping \
&& curl -s https://packagecloud.io/install/repositories/ookla/speedtest-cli/script.deb.sh | bash \
&& apt-get install -y speedtest \
&& rm -rf /var/lib/apt/lists/*