From 526402f866f7bc2bd2ae93d113aa8eec93fd0ad5 Mon Sep 17 00:00:00 2001 From: Hugo Gomes Date: Tue, 30 Apr 2024 12:51:28 +0100 Subject: [PATCH] python2 is removed due to its incompatibility with libssl 3 on ubuntu noble --- ubuntu/Dockerfile | 4 ++-- ubuntu/Dockerfile.noble | 4 ++-- ubuntu_dev/Dockerfile | 2 +- ubuntu_dev/Dockerfile.noble | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index 322cbf0..df620c0 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -6,10 +6,10 @@ LABEL maintainer="Hive Solutions " ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update &&\ - apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python3 python3-distutils &&\ + apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python python-distutils &&\ apt-get clean && rm -rf /var/lib/apt/lists/* &&\ wget "https://bootstrap.pypa.io/get-pip.py" &&\ - python3 get-pip.py --no-cache-dir --no-compile &&\ + python get-pip.py --no-cache-dir --no-compile &&\ rm get-pip.py CMD ["/bin/bash"] diff --git a/ubuntu/Dockerfile.noble b/ubuntu/Dockerfile.noble index 6c57cb2..86ee7f0 100644 --- a/ubuntu/Dockerfile.noble +++ b/ubuntu/Dockerfile.noble @@ -6,10 +6,10 @@ LABEL maintainer="Hive Solutions " ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update &&\ - apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python3 python3-distutils &&\ + apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python python-distutils &&\ apt-get clean && rm -rf /var/lib/apt/lists/* &&\ wget "https://bootstrap.pypa.io/get-pip.py" &&\ - python3 get-pip.py --no-cache-dir --no-compile &&\ + python get-pip.py --no-cache-dir --no-compile &&\ rm get-pip.py CMD ["/bin/bash"] diff --git a/ubuntu_dev/Dockerfile b/ubuntu_dev/Dockerfile index fc3250f..7c4b905 100644 --- a/ubuntu_dev/Dockerfile +++ b/ubuntu_dev/Dockerfile @@ -7,7 +7,7 @@ ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update &&\ apt-get install -y -q --no-install-recommends sudo gcc make curl pypy linux-headers-generic\ - libssl-dev python3-dev pypy-dev &&\ + libssl-dev python-dev pypy-dev &&\ apt-get clean && rm -rf /var/lib/apt/lists/* CMD ["/bin/bash"] diff --git a/ubuntu_dev/Dockerfile.noble b/ubuntu_dev/Dockerfile.noble index 7afd16c..6380506 100644 --- a/ubuntu_dev/Dockerfile.noble +++ b/ubuntu_dev/Dockerfile.noble @@ -7,7 +7,7 @@ ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update &&\ apt-get install -y -q --no-install-recommends sudo gcc make curl pypy linux-headers-generic\ - libssl-dev python3-dev pypy-dev &&\ + libssl-dev python-dev pypy-dev &&\ apt-get clean && rm -rf /var/lib/apt/lists/* CMD ["/bin/bash"]