This commit is contained in:
nyyu 2022-06-22 09:49:10 +02:00
parent d6bf2b07ce
commit e3dcc8117d

View File

@ -3,7 +3,6 @@ FROM ghcr.io/linuxserver/baseimage-alpine:3.16
# set version label
ARG BUILD_DATE
ARG VERSION
ARG PYLOAD_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="aptalca"
@ -33,14 +32,9 @@ RUN \
sqlite \
tesseract-ocr && \
echo "**** install pyload ****" && \
if [ -z ${PYLOAD_VERSION+x} ]; then \
PYLOAD="pyload-ng[all]"; \
else \
PYLOAD="pyload-ng[all]==${PYLOAD_VERSION}"; \
fi && \
pip3 install -U pip setuptools wheel && \
pip install -U --find-links https://wheel-index.linuxserver.io/alpine-3.16/ \
"${PYLOAD}" && \
https://github.com/pyload/pyload/archive/develop.zip#[all] && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \