Skip to content

Commit d1bbffa

Browse files
committed
fix: avoid docker 5.0.0
1 parent 231cf1c commit d1bbffa

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ RUN mkdir /tmp/wheelhouse \
1111
&& cd /tmp/wheelhouse \
1212
&& pip3 install wheel \
1313
&& pip3 wheel --no-cache-dir /tmp/src \
14-
&& rm /tmp/wheelhouse/six*.whl \
1514
&& ls -l /tmp/wheelhouse
1615

1716
FROM alpine:${ALPINE_VERSION}

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def get_identifier(json):
4848
version=versioneer.get_version(),
4949
install_requires=[
5050
"chardet",
51-
"docker",
51+
"docker!=5.0.0",
5252
"entrypoints",
5353
"escapism",
5454
"iso8601",
@@ -57,9 +57,6 @@ def get_identifier(json):
5757
"requests",
5858
"ruamel.yaml>=0.15",
5959
"semver",
60-
# six installation is a workaround of https://github.com/docker/docker-py/pull/2844.
61-
# When removing this, also remove the "rm /tmp/wheelhouse/six*.whl" line in ./Dockerfile
62-
"six",
6360
"toml",
6461
"traitlets",
6562
],

0 commit comments

Comments
 (0)