[ci] do not warn when using alternative PYTHONUSERBASE

This commit is contained in:
Vincent Bernat
2021-05-20 04:22:15 +02:00
parent f56e11e246
commit b96dad58fe
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ ARG sha
FROM python:3.8-buster AS dependencies
WORKDIR /app
ENV PYTHONUSERBASE=/app/python
RUN pip install --user pipenv
RUN pip install --user --no-warn-script-location pipenv
COPY Pipfile* ./
RUN env PIP_USER=1 PIPENV_SYSTEM=1 /app/python/bin/pipenv install --deploy
+1 -1
View File
@@ -2,7 +2,7 @@
FROM python:3.8-buster AS dependencies
WORKDIR /app
ENV PYTHONUSERBASE=/app/python
RUN pip install --user pipenv
RUN pip install --user --no-warn-script-location pipenv
COPY ci/jerikan/Pipfile* ./
RUN env PIP_USER=1 PIPENV_SYSTEM=1 /app/python/bin/pipenv install --deploy