4fb5dffb43
This reverts commit da9949bf88
.
83 lines
2.2 KiB
Docker
83 lines
2.2 KiB
Docker
FROM python:3.9-alpine
|
|
|
|
# set version label
|
|
ARG VERSION
|
|
ARG CALIBRE_RELEASE
|
|
ARG FFF_RELEASE
|
|
LABEL build_version="FFDL-Auto version:- ${VERSION} Calibre: ${CALIBRE_RELEASE} FFF: ${FFF_RELEASE}"
|
|
|
|
ENV PUID="911" \
|
|
PGID="911"
|
|
CALIBRE_INSTALLER_SOURCE_CODE_URL https://raw.githubusercontent.com/kovidgoyal/calibre/master/setup/linux-installer.py
|
|
RUN set -x && \
|
|
apk update && \
|
|
apk add --no-cache --upgrade \
|
|
bash \
|
|
ca-certificates \
|
|
gcc \
|
|
mesa-gl \
|
|
qt5-qtbase-x11 \
|
|
wget \
|
|
xdg-utils \
|
|
xz \
|
|
curl \
|
|
dbus \
|
|
jq \
|
|
python3 \
|
|
shadow
|
|
|
|
RUN set -x && \
|
|
addgroup --gid "$PGID" abc && \
|
|
adduser \
|
|
--gecos "" \
|
|
--disabled-password \
|
|
--no-create-home \
|
|
--uid "$PUID" \
|
|
--ingroup abc \
|
|
--shell /bin/bash \
|
|
abc
|
|
|
|
RUN echo "**** install calibre ****" && \
|
|
wget -O- ${CALIBRE_INSTALLER_SOURCE_CODE_URL} | python -c "import sys; main=lambda:sys.stderr.write('Download failed\n'); exec(sys.stdin.read()); main(install_dir='/opt', isolated=True)" && \
|
|
rm -rf /tmp/calibre-installer-cache
|
|
|
|
RUN echo "**** cleanup ****" && \
|
|
rm -rf \
|
|
/tmp/* \
|
|
/var/lib/apt/lists/* \
|
|
/var/tmp/*
|
|
|
|
RUN echo "**** s6 omsta;; ****" && \
|
|
set -ex && \
|
|
ARCH=`uname -m` && \
|
|
if [ "$ARCH" = "x86_64" ]; then \
|
|
s6_package="s6-overlay-amd64.tar.gz" ; \
|
|
elif [ "$ARCH" = "aarch64" ]; then \
|
|
s6_package="s6-overlay-aarch64.tar.gz" ; \
|
|
else \
|
|
echo "unknown arch: ${ARCH}" && \
|
|
exit 1 ; \
|
|
fi && \
|
|
wget -P /tmp/ https://github.com/just-containers/s6-overlay/releases/download/v2.2.0.3/${s6_package} && \
|
|
tar -xzf /tmp/${s6_package} -C / && \
|
|
rm -rf /tmp/*
|
|
|
|
RUN echo *** Install Packages *** && \
|
|
set -x && \
|
|
apk add --no-cache --upgrade py-pillow && \
|
|
if [ -z ${FFF_RELEASE+x} ]; then \
|
|
python3 -m pip --no-cache-dir install FanFicFare; \
|
|
else \
|
|
python3 -m pip --no-cache-dir install --extra-index-url https://testpypi.python.org/pypi FanFicFare==${FFF_RELEASE}; \
|
|
fi && \
|
|
python3 -m pip --no-cache-dir install pushbullet.py && \
|
|
ln -s /opt/calibre/calibredb /bin/calibredb
|
|
|
|
COPY root/ /
|
|
|
|
VOLUME /config
|
|
|
|
WORKDIR /config
|
|
|
|
ENTRYPOINT ["/init"]
|