Skip to content

Commit

Permalink
chore: pipenv check workaround
Browse files Browse the repository at this point in the history
pypa/pipenv#4188

PIPENV_PYUP_API_KEY= can be removed when pipenv-2020.X.X is released
  • Loading branch information
jdobes committed Jun 8, 2020
1 parent c2f10fc commit a916aeb
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ WORKDIR /engine

ENV LC_ALL=en_US.utf8
ENV LANG=en_US.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pipenv install --ignore-pipfile --deploy && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

Expand Down
1 change: 1 addition & 0 deletions advisor_listener/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ADD /advisor_listener/Pipfile* /advisor_listener/
ENV LC_ALL=C.utf8
ENV LANG=C.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pip3 install --upgrade pipenv && \
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi
Expand Down
1 change: 1 addition & 0 deletions evaluator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ADD /evaluator/Pipfile* /evaluator/
ENV LC_ALL=C.utf8
ENV LANG=C.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pip3 install --upgrade pipenv && \
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi
Expand Down
1 change: 1 addition & 0 deletions listener/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ADD /listener/Pipfile* /listener/
ENV LC_ALL=C.utf8
ENV LANG=C.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pip3 install --upgrade pipenv && \
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi
Expand Down
1 change: 1 addition & 0 deletions manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ADD /manager/Pipfile* /manager/
ENV LC_ALL=C.utf8
ENV LANG=C.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pip3 install --upgrade pipenv && \
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi
Expand Down
1 change: 1 addition & 0 deletions metrics/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ADD /metrics/Pipfile* /metrics/
ENV LC_ALL=C.utf8
ENV LANG=C.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pip3 install --upgrade pipenv && \
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi
Expand Down
1 change: 1 addition & 0 deletions platform_mock/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ADD /platform_mock/Pipfile* /platform_mock/
ENV LC_ALL=C.utf8
ENV LANG=C.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pip3 install --upgrade pipenv && \
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi
Expand Down
1 change: 1 addition & 0 deletions scripts/openshift-debugger/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ADD /common/logging.py /debugger/common/
ENV LC_ALL=C.utf8
ENV LANG=C.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pip3 install --upgrade pipenv && \
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi
Expand Down
1 change: 1 addition & 0 deletions taskomatic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ADD /taskomatic/Pipfile* /taskomatic/
ENV LC_ALL=C.utf8
ENV LANG=C.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pip3 install --upgrade pipenv && \
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi
Expand Down
1 change: 1 addition & 0 deletions vmaas_sync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ADD /vmaas_sync/Pipfile* /vmaas_sync/
ENV LC_ALL=C.utf8
ENV LANG=C.utf8
ARG PIPENV_CHECK=1
ARG PIPENV_PYUP_API_KEY=""
RUN pip3 install --upgrade pipenv && \
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi
Expand Down

0 comments on commit a916aeb

Please sign in to comment.