chore: update Dockerfile to configure pip behavior
All checks were successful
Build Docker Image / build (default) (push) Successful in 1m40s
Build Docker Image / build (full) (push) Successful in 35m36s
Build Docker Image / build (full-python) (push) Successful in 35m23s
Build Docker Image / build (python) (push) Successful in 6m52s

This commit is contained in:
2025-06-14 18:17:40 +02:00
parent 84772ddb37
commit 436f16c37f

View File

@@ -21,8 +21,10 @@ FROM default AS python
ENV TERM=xterm-256color
ARG PYTHON_PACKAGES
RUN apk add --no-cache ${PYTHON_PACKAGES}
RUN python3 -m pip config set global.break-system-packages true
FROM full AS full-python
ENV TERM=xterm-256color
ARG PYTHON_PACKAGES
RUN apk add --no-cache ${PYTHON_PACKAGES}
RUN apk add --no-cache ${PYTHON_PACKAGES}
RUN python3 -m pip config set global.break-system-packages true