From 6b00d5339d5ea6801d31bfec026aa619021a007f Mon Sep 17 00:00:00 2001 From: Alvise Bruniera Date: Mon, 2 Dec 2024 00:09:16 +0100 Subject: [PATCH] Added dependency for FREEBOX in DOCKERFILE --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d8e5307..c711673f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,8 @@ ARG INSTALL_DIR=/app ENV PYTHONUNBUFFERED=1 # Install build dependencies -RUN apk add --no-cache bash python3 python3-dev gcc musl-dev libffi-dev openssl-dev \ +RUN apk add --no-cache bash python3 python3-dev gcc musl-dev libffi-dev openssl-dev git\ && python -m venv /opt/venv - # Enable venv ENV PATH="/opt/venv/bin:$PATH" @@ -57,6 +56,6 @@ COPY install/crontab /etc/crontabs/root RUN ${INSTALL_DIR}/dockerfiles/pre-setup.sh HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=2 \ - CMD curl -sf -o /dev/null ${LISTEN_ADDR}:${PORT}/api/app_state.json + CMD curl -sf -o /dev/null ${LISTEN_ADDR}:${PORT}/api/app_state.json ENTRYPOINT ["/init"]