diff --git a/Dockerfile b/Dockerfile index be8f1a3..e05dca9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ RUN apt-get update -y \ && apt-get install -y --no-install-recommends \ python3 python3-pip python3-venv \ python3-all-dev python3-setuptools build-essential python3-wheel python3-apt \ - && pip3 install -U pip \ - && pip3 install \ + #&& pip3 install -U --break-system-packages pip \ + && pip3 install --break-system-packages \ pytype pylint black[jupyter] isort pytest ipython \ wajig \ && ln -svf /usr/bin/python3 /usr/bin/python \ diff --git a/build.sh b/build.sh index 2b9a25e..065f9d8 100755 --- a/build.sh +++ b/build.sh @@ -1,3 +1,4 @@ #!/bin/bash +docker pull dclong/base:next docker build -t dclong/python:next .