Skip to content

Commit

Permalink
fix docker base-image dependency cryptography version
Browse files Browse the repository at this point in the history
fixes issue melicertes#81
dockerjava8 docker image failed to build on 'pip install docker-compose' with cryptography as automatic dependency
  • Loading branch information
tomas321 committed May 11, 2021
1 parent 9997f70 commit d298a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployment/docker/base-images/dockerjava8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apk add --no-cache --virtual=build-dependencies wget ca-certificates unzip &

RUN apk add --no-cache bash drill wget ca-certificates libressl python py2-pip py-jinja2 git curl py-pip python-dev libffi-dev openssl-dev gcc libc-dev make \
&& pip install --upgrade pip \
&& pip install j2cli[yaml] && update-ca-certificates
&& pip install j2cli[yaml] cryptography==2.8 && update-ca-certificates
RUN pip install docker-compose


Expand Down

0 comments on commit d298a73

Please sign in to comment.