build(Dockerfile): adding apt update to the build
All checks were successful
/ desec-script (push) Successful in 1m34s

This commit is contained in:
devaine 2026-03-05 23:50:48 -06:00
commit 295ebe86a6
Signed by: devaine
GPG key ID: 954B1DCAC6FF84EE

View file

@ -4,7 +4,8 @@ COPY . /desec
WORKDIR /desec/server-scripts/desec-ip-sync/ 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"] CMD ["bash", "run.bash"]