From f8a904aeb2ca6393383447132148de6c7bac81b3 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Tue, 25 May 2021 10:59:19 +0200 Subject: Remove six from Openstack requirements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- docker/core/Dockerfile | 1 + 1 file changed, 1 insertion(+) (limited to 'docker/core') 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 && \ -- cgit 1.2.3-korg