Added dependency for FREEBOX in DOCKERFILE

This commit is contained in:
Alvise Bruniera
2024-12-02 00:09:16 +01:00
parent 6cb56525f3
commit 6b00d5339d
+1 -2
View File
@@ -5,10 +5,9 @@ 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"