From 712cf1adf63d8d31b9e2abe9d1f220e0cf0fa372 Mon Sep 17 00:00:00 2001 From: nyyu Date: Sat, 5 Aug 2023 09:14:55 +0200 Subject: [PATCH] fix(pyload): build --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 && \