2019-06-02 07:42:37 -07:00
|
|
|
|
FROM lsiobase/ubuntu:arm32v7-bionic
|
2019-02-12 23:22:48 -08:00
|
|
|
|
|
|
|
|
|
# set version label
|
|
|
|
|
ARG BUILD_DATE
|
|
|
|
|
ARG VERSION
|
2019-06-02 08:03:09 -07:00
|
|
|
|
ARG CALIBREWEB_RELEASE
|
2019-02-12 23:22:48 -08:00
|
|
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
|
|
|
LABEL maintainer="chbmb"
|
|
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
|
echo "**** install build packages ****" && \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
apt-get update && \
|
|
|
|
|
apt-get install -y \
|
|
|
|
|
g++ \
|
|
|
|
|
gcc \
|
|
|
|
|
git \
|
|
|
|
|
libffi-dev \
|
|
|
|
|
libjpeg-dev \
|
|
|
|
|
libxml2-dev \
|
|
|
|
|
libxslt1-dev \
|
2019-10-13 15:44:07 -07:00
|
|
|
|
python3-pip \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
zlib1g-dev && \
|
2019-02-12 23:22:48 -08:00
|
|
|
|
echo "**** install runtime packages ****" && \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
apt-get install -y \
|
|
|
|
|
imagemagick \
|
2019-08-01 09:52:46 -07:00
|
|
|
|
libxcomposite1 \
|
2019-10-13 15:44:07 -07:00
|
|
|
|
python3-minimal \
|
2019-06-13 04:23:10 -07:00
|
|
|
|
unrar && \
|
2019-02-12 23:22:48 -08:00
|
|
|
|
echo "**** install calibre-web ****" && \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
if [ -z ${CALIBREWEB_RELEASE+x} ]; then \
|
|
|
|
|
CALIBREWEB_RELEASE=$(curl -sX GET "https://api.github.com/repos/janeczku/calibre-web/releases/latest" \
|
|
|
|
|
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
|
|
|
|
|
fi && \
|
|
|
|
|
curl -o \
|
|
|
|
|
/tmp/calibre-web.tar.gz -L \
|
2019-06-02 08:03:09 -07:00
|
|
|
|
https://github.com/janeczku/calibre-web/archive/${CALIBREWEB_RELEASE}.tar.gz && \
|
2019-02-12 23:22:48 -08:00
|
|
|
|
mkdir -p \
|
|
|
|
|
/app/calibre-web && \
|
|
|
|
|
tar xf \
|
|
|
|
|
/tmp/calibre-web.tar.gz -C \
|
|
|
|
|
/app/calibre-web --strip-components=1 && \
|
|
|
|
|
cd /app/calibre-web && \
|
2019-10-13 15:44:07 -07:00
|
|
|
|
pip3 install --no-cache-dir -U -r \
|
2019-02-12 23:22:48 -08:00
|
|
|
|
requirements.txt && \
|
2019-10-13 15:44:07 -07:00
|
|
|
|
pip3 install --no-cache-dir -U -r \
|
2019-02-12 23:22:48 -08:00
|
|
|
|
optional-requirements.txt && \
|
|
|
|
|
echo "**** cleanup ****" && \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
apt-get -y purge \
|
|
|
|
|
g++ \
|
|
|
|
|
gcc \
|
|
|
|
|
git \
|
|
|
|
|
libffi-dev \
|
|
|
|
|
libjpeg-dev \
|
|
|
|
|
libxml2-dev \
|
|
|
|
|
libxslt1-dev \
|
2019-10-13 15:44:07 -07:00
|
|
|
|
python3-pip \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
zlib1g-dev && \
|
|
|
|
|
apt-get -y autoremove && \
|
2019-02-12 23:22:48 -08:00
|
|
|
|
rm -rf \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
/tmp/* \
|
|
|
|
|
/var/lib/apt/lists/* \
|
|
|
|
|
/var/tmp/*
|
2019-02-12 23:22:48 -08:00
|
|
|
|
|
|
|
|
|
# add local files
|
2019-06-04 20:48:24 -07:00
|
|
|
|
COPY root/ /
|
|
|
|
|
|
|
|
|
|
# ports and volumes
|
|
|
|
|
EXPOSE 8083
|
|
|
|
|
VOLUME /books /config
|