diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index d020029..f7186db 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -9,7 +9,7 @@ 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 python-is-python3 &&\ apt-get clean && rm -rf /var/lib/apt/lists/* &&\ wget "https://bootstrap.pypa.io/get-pip.py" &&\ - python get-pip.py --no-cache-dir --no-compile &&\ + python get-pip.py --no-cache-dir --no-compile --break-system-packages &&\ rm get-pip.py CMD ["/bin/bash"] diff --git a/ubuntu/Dockerfile.noble b/ubuntu/Dockerfile.noble index 434850f..218f097 100644 --- a/ubuntu/Dockerfile.noble +++ b/ubuntu/Dockerfile.noble @@ -9,7 +9,7 @@ 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 python-is-python3 &&\ apt-get clean && rm -rf /var/lib/apt/lists/* &&\ wget "https://bootstrap.pypa.io/get-pip.py" &&\ - python get-pip.py --no-cache-dir --no-compile &&\ + python get-pip.py --no-cache-dir --no-compile --break-system-packages &&\ rm get-pip.py CMD ["/bin/bash"]