From 6acd21d8df986c504f205798d0859b5cd8bf1491 Mon Sep 17 00:00:00 2001 From: nyyu Date: Sat, 18 Feb 2023 18:01:39 +0100 Subject: [PATCH] update --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d79e14e..28b4ac6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM ghcr.io/linuxserver/baseimage-alpine:edge # set version label +ARG DOCKER_IMAGE_CREATED ARG VERSION LABEL build_version="pyload docker version:- ${VERSION} Build-date:- ${DOCKER_IMAGE_CREATED}" @@ -21,7 +22,7 @@ RUN \ curl \ ffmpeg \ libjpeg-turbo \ - p7zip \ + 7zip \ python3 \ sqlite \ tesseract-ocr && \ @@ -32,8 +33,7 @@ RUN \ fi && \ python3 -m ensurepip --upgrade && \ pip3 install -U wheel && \ - pip3 install -U --find-links https://wheel-index.linuxserver.io/alpine-3.16/ \ - "${PYLOAD}" && \ + pip3 install -U "${PYLOAD}" && \ echo "**** cleanup ****" && \ apk del --purge \ build-dependencies && \