From 9fb5ed7379ed7fc96d0aeda70411d696bd6cba65 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Tue, 25 May 2021 11:18:46 +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: Iad64341d8014621bc999bade94676d4059e71353 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 45248ff2..c746fd06 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -9,6 +9,7 @@ RUN apk -U upgrade && \ python3-dev build-base libxml2-dev libxslt-dev linux-headers && \ wget -q -O- https://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt > upper-constraints.txt && \ sed -i -E /^PyYAML==+.*$/d upper-constraints.txt && \ + sed -i -E /^six==+.*$/d upper-constraints.txt && \ case $(uname -m) in aarch*|arm*) CFLAGS="-O0" \ pip3 install --no-cache-dir \ -cupper-constraints.txt \ -- cgit 1.2.3-korg