We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43891a6 commit 231cf1cCopy full SHA for 231cf1c
Dockerfile
@@ -11,6 +11,7 @@ RUN mkdir /tmp/wheelhouse \
11
&& cd /tmp/wheelhouse \
12
&& pip3 install wheel \
13
&& pip3 wheel --no-cache-dir /tmp/src \
14
+ && rm /tmp/wheelhouse/six*.whl \
15
&& ls -l /tmp/wheelhouse
16
17
FROM alpine:${ALPINE_VERSION}
setup.py
@@ -57,6 +57,9 @@ def get_identifier(json):
57
"requests",
58
"ruamel.yaml>=0.15",
59
"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",
63
"toml",
64
"traitlets",
65
],
0 commit comments