Skip to content

Commit

Permalink
Install specified version of pipenv
Browse files Browse the repository at this point in the history
  • Loading branch information
ngrippa committed Jun 9, 2020
1 parent c3a5566 commit a8faf1b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker/cilantro-convert-worker/Dockerfile
Expand Up @@ -23,7 +23,7 @@ ENV LANG C.UTF-8
# workaround for pipenv bug: https://github.com/pypa/pipenv/issues/1328
RUN set -ex && mkdir /app

RUN pip3 install pipenv
RUN pip3 install 'pipenv==2018.11.26'
COPY docker/cilantro-convert-worker/Pipfile.lock Pipfile.lock
COPY docker/cilantro-convert-worker/Pipfile Pipfile
RUN set -ex && pipenv install --deploy --system
Expand Down
2 changes: 1 addition & 1 deletion docker/cilantro-default-worker/Dockerfile
Expand Up @@ -20,7 +20,7 @@ ENV LANG C.UTF-8
RUN set -ex && mkdir /app


RUN pip3 install pipenv
RUN pip3 install 'pipenv==2018.11.26'
COPY docker/cilantro-default-worker/Pipfile.lock Pipfile.lock
COPY docker/cilantro-default-worker/Pipfile Pipfile
RUN set -ex && pipenv install --deploy --system
Expand Down
2 changes: 1 addition & 1 deletion docker/cilantro-nlp-heideltime-worker/Dockerfile
Expand Up @@ -17,7 +17,7 @@ ENV LANG C.UTF-8
# workaround for pipenv bug: https://github.com/pypa/pipenv/issues/1328
RUN set -ex && mkdir /app

RUN pip3 install pipenv
RUN pip3 install 'pipenv==2018.11.26'
COPY docker/cilantro-nlp-heideltime-worker/Pipfile.lock Pipfile.lock
COPY docker/cilantro-nlp-heideltime-worker/Pipfile Pipfile
RUN set -ex && pipenv install --deploy --system
Expand Down
2 changes: 1 addition & 1 deletion docker/cilantro-service/Dockerfile
Expand Up @@ -10,7 +10,7 @@ RUN apk add --update python3-dev py-pip gcc libffi libffi-dev musl-dev
# workaround for pipenv bug: https://github.com/pypa/pipenv/issues/1328
RUN set -ex && mkdir /app

RUN pip3 install pipenv
RUN pip3 install 'pipenv==2018.11.26'
COPY docker/cilantro-service/Pipfile.lock Pipfile.lock
COPY docker/cilantro-service/Pipfile Pipfile
RUN set -ex && pipenv install --deploy --system
Expand Down
2 changes: 1 addition & 1 deletion docker/cilantro-test/Dockerfile
Expand Up @@ -22,7 +22,7 @@ ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8


RUN pip3 install pipenv
RUN pip3 install 'pipenv==2018.11.26'
COPY docker/cilantro-test/Pipfile.lock Pipfile.lock
COPY docker/cilantro-test/Pipfile Pipfile
RUN set -ex && pipenv install --deploy --system
Expand Down

0 comments on commit a8faf1b

Please sign in to comment.