pipenv did not run with that option

This commit is contained in:
tcely 2024-12-21 20:22:08 -05:00 committed by GitHub
parent f4c070ada7
commit a2c97d2791
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -139,7 +139,9 @@ COPY pip.conf /etc/pip.conf
COPY Pipfile /app/Pipfile
# Do not include compiled byte-code
ENV PIP_ROOT_USER_ACTION='ignore' PIP_NO_COMPILE=1
ENV PIP_NO_COMPILE=1 \
PIP_NO_CACHE_DIR=1 \
PIP_ROOT_USER_ACTION='ignore'
# Switch workdir to the the app
WORKDIR /app