manga-dlp/docker/Dockerfile.arm64

46 lines
905 B
Docker
Raw Normal View History

FROM cr.44net.ch/baseimages/debian-s6:1.3.4
2021-12-24 16:30:50 +01:00
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="Ivan Schaller"
# manga-dlp version
ENV MDLP_VERSION=2.0.8
2021-12-24 16:30:50 +01:00
# install packages
RUN \
echo "**** install base packages ****" && \
apt-get update && \
apt-get install -y --no-install-recommends \
python3 \
python3-pip \
&& \
echo "**** creating folders ****" && \
mkdir -p /app && \
echo "**** cleanup ****" && \
apt-get purge --auto-remove -y && \
apt-get clean && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
2022-05-13 22:59:26 +02:00
# copy files to container
# copy files to container
COPY docker/rootfs /
COPY mangadlp/ /app/mangadlp/
COPY manga-dlp.py \
requirements.txt \
LICENSE \
/app/
2021-12-24 16:30:50 +01:00
2022-05-13 22:59:26 +02:00
# install requirements
RUN pip install -r /app/requirements.txt
2021-12-24 16:30:50 +01:00
2022-05-13 22:59:26 +02:00
WORKDIR /app