diff --git a/Dockerfile b/Dockerfile index 5bb6039..2cebe44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,6 +41,7 @@ RUN \ ffmpeg \ libjpeg-turbo \ python3 \ + py3-pip \ sqlite \ tesseract-ocr && \ echo "**** install pyload ****" && \ @@ -48,9 +49,7 @@ RUN \ if [[ -n "${VERSION}" && "${VERSION}" != "dev" ]]; then \ PYLOAD="pyload-ng[all]==${VERSION}"; \ fi && \ - python3 -m ensurepip --upgrade && \ - pip3 install -U wheel && \ - pip3 install -U "${PYLOAD}" && \ + pip3 install --break-system-packages -U "${PYLOAD}" && \ echo "**** cleanup ****" && \ apk del --purge \ build-dependencies && \