Skip to content

Commit efc37c4

Browse files
authored
Merge pull request #1066 from consideRatio/pr/fix-depdency-issues
Workaround docker-py dependency's failure to import six
2 parents 43891a6 + f3906be commit efc37c4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ 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 \
1415
&& ls -l /tmp/wheelhouse
1516

1617
FROM alpine:${ALPINE_VERSION}

setup.py

Lines changed: 1 addition & 1 deletion
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",

0 commit comments

Comments
 (0)