From 295ebe86a69bd242aa8590c16fbfb6bac8d3dab3 Mon Sep 17 00:00:00 2001 From: devaine Date: Thu, 5 Mar 2026 23:50:48 -0600 Subject: [PATCH] build(Dockerfile): adding apt update to the build --- server-scripts/desec-ip-sync/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server-scripts/desec-ip-sync/Dockerfile b/server-scripts/desec-ip-sync/Dockerfile index e15d592..ae7c9ed 100644 --- a/server-scripts/desec-ip-sync/Dockerfile +++ b/server-scripts/desec-ip-sync/Dockerfile @@ -4,7 +4,8 @@ COPY . /desec WORKDIR /desec/server-scripts/desec-ip-sync/ -RUN apt install python3.11-venv -y + +RUN apt update && apt install python3.11-venv -y CMD ["bash", "run.bash"]