diff --git a/Dockerfile b/Dockerfile index ad8fcca..9515770 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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} \ No newline at end of file +RUN apk add --no-cache ${PYTHON_PACKAGES} +RUN python3 -m pip config set global.break-system-packages true \ No newline at end of file