Skip to content

Commit

Permalink
Merge pull request #118 from yuvipanda/docker-py
Browse files Browse the repository at this point in the history
Avoid version of docker-py with a regression
  • Loading branch information
consideRatio authored Mar 26, 2024
2 parents 00874a0 + 75199a7 commit 21f76d6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ RUN apk add --no-cache curl build-base python3 python3-dev py3-pip

RUN python3 -m pip install --upgrade wheel setuptools

# Manually downgrade version of docker-py
# Until a fix for https://github.com/docker/docker-py/issues/3240
# is released, we want to use an older version of docker-py
RUN pip install 'docker!=7.0.0'

# https://stackoverflow.com/a/41651363/1695486
RUN apk add --no-cache curl curl-dev
COPY create_docker_image.sh /create_docker_image.sh
Expand Down

0 comments on commit 21f76d6

Please sign in to comment.