From edda7d165821134490b107e23191828b18b29b50 Mon Sep 17 00:00:00 2001 From: justiceadams Date: Thu, 29 Aug 2024 10:06:18 -0700 Subject: [PATCH] install python3-pip in ubuntu and AWS container --- swift-ci/master/amazon-linux/2/Dockerfile | 1 + swift-ci/master/ubuntu/18.04/Dockerfile | 1 + swift-ci/master/ubuntu/20.04/Dockerfile | 1 + swift-ci/master/ubuntu/22.04/Dockerfile | 1 + swift-ci/master/ubuntu/23.10/Dockerfile | 1 + swift-ci/master/ubuntu/24.04/Dockerfile | 1 + 6 files changed, 6 insertions(+) diff --git a/swift-ci/master/amazon-linux/2/Dockerfile b/swift-ci/master/amazon-linux/2/Dockerfile index 50af5a97..21fbfc02 100644 --- a/swift-ci/master/amazon-linux/2/Dockerfile +++ b/swift-ci/master/amazon-linux/2/Dockerfile @@ -30,6 +30,7 @@ RUN yum -y install \ python-devel \ python-pkgconfig \ python-six \ + python3-pip \ python3-devel \ python3-psutil \ rsync \ diff --git a/swift-ci/master/ubuntu/18.04/Dockerfile b/swift-ci/master/ubuntu/18.04/Dockerfile index 1229864e..2b530c8f 100644 --- a/swift-ci/master/ubuntu/18.04/Dockerfile +++ b/swift-ci/master/ubuntu/18.04/Dockerfile @@ -23,6 +23,7 @@ RUN apt -y update && apt -y install \ python-six \ python-pkg-resources \ python3-six \ + python3-pip \ python3-distutils \ python3-pkg-resources \ python3-psutil \ diff --git a/swift-ci/master/ubuntu/20.04/Dockerfile b/swift-ci/master/ubuntu/20.04/Dockerfile index 4b9fec3b..0168adcd 100644 --- a/swift-ci/master/ubuntu/20.04/Dockerfile +++ b/swift-ci/master/ubuntu/20.04/Dockerfile @@ -23,6 +23,7 @@ RUN apt-get -y update && apt-get -y install \ python-six \ python2-dev \ python3-six \ + python3-pip \ python3-distutils \ python3-pkg-resources \ python3-psutil \ diff --git a/swift-ci/master/ubuntu/22.04/Dockerfile b/swift-ci/master/ubuntu/22.04/Dockerfile index c624f36f..e3d3e6f5 100644 --- a/swift-ci/master/ubuntu/22.04/Dockerfile +++ b/swift-ci/master/ubuntu/22.04/Dockerfile @@ -26,6 +26,7 @@ RUN apt-get -y update && apt-get -y install \ python-six \ python2-dev \ python3-six \ + python3-pip \ python3-distutils \ python3-pkg-resources \ python3-psutil \ diff --git a/swift-ci/master/ubuntu/23.10/Dockerfile b/swift-ci/master/ubuntu/23.10/Dockerfile index de7cd504..bd9cb667 100644 --- a/swift-ci/master/ubuntu/23.10/Dockerfile +++ b/swift-ci/master/ubuntu/23.10/Dockerfile @@ -20,6 +20,7 @@ RUN apt-get -y update && apt-get -y install \ ninja-build \ pkg-config \ python3-six \ + python3-pip \ python3-distutils \ python3-pkg-resources \ python3-psutil \ diff --git a/swift-ci/master/ubuntu/24.04/Dockerfile b/swift-ci/master/ubuntu/24.04/Dockerfile index b593ef3a..32f27f6c 100644 --- a/swift-ci/master/ubuntu/24.04/Dockerfile +++ b/swift-ci/master/ubuntu/24.04/Dockerfile @@ -21,6 +21,7 @@ RUN apt-get -y update && apt-get -y install \ ninja-build \ pkg-config \ python3-six \ + python3-pip \ python3-pkg-resources \ python3-psutil \ python3-setuptools \