Skip to content

Commit 1d66c49

Browse files
committed
chore: pipenv check workaround
pypa/pipenv#4188 PIPENV_PYUP_API_KEY= can be removed when pipenv-2020.X.X is released
1 parent 71be3ed commit 1d66c49

File tree

10 files changed

+11
-0
lines changed

10 files changed

+11
-0
lines changed

Dockerfile.test

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ WORKDIR /engine
1818

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

advisor_listener/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ADD /advisor_listener/Pipfile* /advisor_listener/
1313
ENV LC_ALL=C.utf8
1414
ENV LANG=C.utf8
1515
ARG PIPENV_CHECK=1
16+
ARG PIPENV_PYUP_API_KEY=""
1617
RUN pip3 install --upgrade pipenv && \
1718
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
1819
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

evaluator/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ADD /evaluator/Pipfile* /evaluator/
1313
ENV LC_ALL=C.utf8
1414
ENV LANG=C.utf8
1515
ARG PIPENV_CHECK=1
16+
ARG PIPENV_PYUP_API_KEY=""
1617
RUN pip3 install --upgrade pipenv && \
1718
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
1819
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

listener/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ADD /listener/Pipfile* /listener/
1313
ENV LC_ALL=C.utf8
1414
ENV LANG=C.utf8
1515
ARG PIPENV_CHECK=1
16+
ARG PIPENV_PYUP_API_KEY=""
1617
RUN pip3 install --upgrade pipenv && \
1718
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
1819
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

manager/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ ADD /manager/Pipfile* /manager/
2626
ENV LC_ALL=C.utf8
2727
ENV LANG=C.utf8
2828
ARG PIPENV_CHECK=1
29+
ARG PIPENV_PYUP_API_KEY=""
2930
RUN pip3 install --upgrade pipenv && \
3031
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
3132
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

metrics/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ ADD /metrics/Pipfile* /metrics/
99
ENV LC_ALL=C.utf8
1010
ENV LANG=C.utf8
1111
ARG PIPENV_CHECK=1
12+
ARG PIPENV_PYUP_API_KEY=""
1213
RUN pip3 install --upgrade pipenv && \
1314
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
1415
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

platform_mock/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ ADD /platform_mock/Pipfile* /platform_mock/
99
ENV LC_ALL=C.utf8
1010
ENV LANG=C.utf8
1111
ARG PIPENV_CHECK=1
12+
ARG PIPENV_PYUP_API_KEY=""
1213
RUN pip3 install --upgrade pipenv && \
1314
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
1415
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

scripts/openshift-debugger/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ ADD /common/logging.py /debugger/common/
2626
ENV LC_ALL=C.utf8
2727
ENV LANG=C.utf8
2828
ARG PIPENV_CHECK=1
29+
ARG PIPENV_PYUP_API_KEY=""
2930
RUN pip3 install --upgrade pipenv && \
3031
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
3132
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

taskomatic/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ADD /taskomatic/Pipfile* /taskomatic/
1313
ENV LC_ALL=C.utf8
1414
ENV LANG=C.utf8
1515
ARG PIPENV_CHECK=1
16+
ARG PIPENV_PYUP_API_KEY=""
1617
RUN pip3 install --upgrade pipenv && \
1718
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
1819
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

vmaas_sync/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ADD /vmaas_sync/Pipfile* /vmaas_sync/
1313
ENV LC_ALL=C.utf8
1414
ENV LANG=C.utf8
1515
ARG PIPENV_CHECK=1
16+
ARG PIPENV_PYUP_API_KEY=""
1617
RUN pip3 install --upgrade pipenv && \
1718
pipenv install --ignore-pipfile --deploy --system && ln -s /usr/bin/python3 /usr/bin/python && \
1819
if [ "${PIPENV_CHECK}" == 1 ] ; then pipenv check --system ; fi

0 commit comments

Comments
 (0)