From 534d6b4381440503ccbd5090968e4886d9cc2318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20M=C3=B6ller?= Date: Thu, 7 Aug 2025 22:29:10 +0200 Subject: [PATCH 1/2] update to latest debian slim image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 97ff258..ffddd38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM debian:buster-slim as BuildContainer +FROM debian:slim as BuildContainer RUN apt update && apt install wget -y RUN mkdir /usr/src/ooklaserver RUN wget https://install.speedtest.net/ooklaserver/ooklaserver.sh && chmod a+x ooklaserver.sh RUN ./ooklaserver.sh install -f -i /usr/src/ooklaserver -FROM debian:buster-slim +FROM debian:slim EXPOSE 8080 EXPOSE 5060 RUN useradd -M -r -s /sbin/nologin -u 4711 ookla -- 2.36.6 From 1cc410e3a0f89153b8a0fec82e321dc568292823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20M=C3=B6ller?= Date: Thu, 7 Aug 2025 22:32:31 +0200 Subject: [PATCH 2/2] fix wring image tag --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ffddd38..4b961ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM debian:slim as BuildContainer +FROM debian:bookworm-slim as BuildContainer RUN apt update && apt install wget -y RUN mkdir /usr/src/ooklaserver RUN wget https://install.speedtest.net/ooklaserver/ooklaserver.sh && chmod a+x ooklaserver.sh RUN ./ooklaserver.sh install -f -i /usr/src/ooklaserver -FROM debian:slim +FROM debian:bookworm-slim EXPOSE 8080 EXPOSE 5060 RUN useradd -M -r -s /sbin/nologin -u 4711 ookla -- 2.36.6