diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-05-25 10:59:19 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-05-25 10:59:19 +0200 |
commit | f8a904aeb2ca6393383447132148de6c7bac81b3 (patch) | |
tree | 581dceb0edcc6aad2bb7a41ad4153a2fb4255170 | |
parent | c35c6d443eb93db318c3436d995809dfe7e8389f (diff) |
Remove six from Openstack requirements
Attempting uninstall: six
Found existing installation: six 1.15.0
[91mERROR: Cannot uninstall 'six'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
https://github.com/openstack/requirements/blob/master/upper-constraints.txt#L445
Change-Id: Iaefff9653ea9d3ac06b881328c545367a9a02244
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | docker/core/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index dd98ffa5..38a92773 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -17,6 +17,7 @@ RUN apk -U upgrade && \ case $(uname -m) in aarch*|arm*) \ sed -i -E /^PyNaCl=/d /src/requirements/upper-constraints.txt && \ apk add --no-cache py3-pynacl ;; esac && \ + sed -i -E /^six=/d /src/requirements/upper-constraints.txt && \ apk --no-cache add --update py3-distlib\>=0.3.1 \ --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main && \ git init /src/functest-kubernetes && \ |