2019-06-02 07:42:37 -07:00
|
|
|
|
FROM lsiobase/ubuntu:bionic
|
2017-03-20 18:34:52 -07:00
|
|
|
|
|
|
|
|
|
# set version label
|
|
|
|
|
ARG BUILD_DATE
|
|
|
|
|
ARG VERSION
|
2019-06-02 08:03:09 -07:00
|
|
|
|
ARG CALIBREWEB_RELEASE
|
2017-03-20 18:34:52 -07:00
|
|
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
2017-12-06 11:12:27 -08:00
|
|
|
|
LABEL maintainer="chbmb"
|
|
|
|
|
|
2017-03-20 18:34:52 -07:00
|
|
|
|
RUN \
|
2017-12-06 11:12:27 -08:00
|
|
|
|
echo "**** install build packages ****" && \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
apt-get update && \
|
|
|
|
|
apt-get install -y \
|
|
|
|
|
git \
|
2020-01-19 09:32:00 -08:00
|
|
|
|
libldap2-dev \
|
|
|
|
|
libsasl2-dev \
|
2019-10-13 15:44:07 -07:00
|
|
|
|
python3-pip && \
|
2017-12-06 11:12:27 -08:00
|
|
|
|
echo "**** install runtime packages ****" && \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
apt-get install -y \
|
|
|
|
|
imagemagick \
|
2019-11-10 06:48:12 -08:00
|
|
|
|
libnss3 \
|
2019-08-01 09:52:46 -07:00
|
|
|
|
libxcomposite1 \
|
2020-05-06 06:55:22 -07:00
|
|
|
|
libxslt1.1 \
|
2020-01-19 09:32:00 -08:00
|
|
|
|
libldap-2.4-2 \
|
|
|
|
|
libsasl2-2 \
|
2019-10-13 15:44:07 -07:00
|
|
|
|
python3-minimal \
|
2019-06-13 04:23:10 -07:00
|
|
|
|
unrar && \
|
2017-12-06 11:12:27 -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 && \
|
2017-03-20 18:34:52 -07: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 \
|
2017-03-20 18:34:52 -07:00
|
|
|
|
requirements.txt && \
|
2019-10-13 15:44:07 -07:00
|
|
|
|
pip3 install --no-cache-dir -U -r \
|
2017-06-06 23:33:43 -07:00
|
|
|
|
optional-requirements.txt && \
|
2020-06-05 13:41:16 -07:00
|
|
|
|
echo "***install kepubify" && \
|
|
|
|
|
if [ -z ${KEPUBIFY_RELEASE+x} ]; then \
|
|
|
|
|
KEPUBIFY_RELEASE=$(curl -sX GET "https://api.github.com/repos/geek1011/kepubify/releases/latest" \
|
|
|
|
|
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
|
|
|
|
|
fi && \
|
|
|
|
|
curl -o \
|
|
|
|
|
/usr/bin/kepubify -L \
|
|
|
|
|
https://github.com/geek1011/kepubify/releases/download/${KEPUBIFY_RELEASE}/kepubify-linux-64bit && \
|
2017-12-06 11:12:27 -08:00
|
|
|
|
echo "**** cleanup ****" && \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
apt-get -y purge \
|
|
|
|
|
git \
|
2020-01-19 09:32:00 -08:00
|
|
|
|
libldap2-dev \
|
|
|
|
|
libsasl2-dev \
|
2019-10-13 15:44:07 -07:00
|
|
|
|
python3-pip && \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
apt-get -y autoremove && \
|
2017-03-20 18:34:52 -07:00
|
|
|
|
rm -rf \
|
2019-06-04 20:48:24 -07:00
|
|
|
|
/tmp/* \
|
|
|
|
|
/var/lib/apt/lists/* \
|
|
|
|
|
/var/tmp/*
|
2019-06-02 07:42:37 -07:00
|
|
|
|
|
2017-03-20 18:34:52 -07:00
|
|
|
|
# add local files
|
|
|
|
|
COPY root/ /
|
|
|
|
|
|
|
|
|
|
# ports and volumes
|
2017-06-06 23:33:43 -07:00
|
|
|
|
EXPOSE 8083
|
2017-03-20 18:34:52 -07:00
|
|
|
|
VOLUME /books /config
|