2019-06-02 14:42:37 +00:00
|
|
|
|
FROM lsiobase/ubuntu:bionic
|
2017-03-21 01:34:52 +00:00
|
|
|
|
|
|
|
|
|
# set version label
|
|
|
|
|
ARG BUILD_DATE
|
|
|
|
|
ARG VERSION
|
2019-06-02 15:03:09 +00:00
|
|
|
|
ARG CALIBREWEB_RELEASE
|
2017-03-21 01:34:52 +00:00
|
|
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
2017-12-06 19:12:27 +00:00
|
|
|
|
LABEL maintainer="chbmb"
|
|
|
|
|
|
2017-03-21 01:34:52 +00:00
|
|
|
|
RUN \
|
2017-12-06 19:12:27 +00:00
|
|
|
|
echo "**** install build packages ****" && \
|
2019-06-05 03:48:24 +00:00
|
|
|
|
apt-get update && \
|
|
|
|
|
apt-get install -y \
|
|
|
|
|
git \
|
2020-01-19 17:32:00 +00:00
|
|
|
|
libldap2-dev \
|
|
|
|
|
libsasl2-dev \
|
2019-10-13 22:44:07 +00:00
|
|
|
|
python3-pip && \
|
2017-12-06 19:12:27 +00:00
|
|
|
|
echo "**** install runtime packages ****" && \
|
2019-06-05 03:48:24 +00:00
|
|
|
|
apt-get install -y \
|
|
|
|
|
imagemagick \
|
2019-11-10 14:48:12 +00:00
|
|
|
|
libnss3 \
|
2019-08-01 16:52:46 +00:00
|
|
|
|
libxcomposite1 \
|
2020-05-06 13:55:22 +00:00
|
|
|
|
libxslt1.1 \
|
2020-01-19 17:32:00 +00:00
|
|
|
|
libldap-2.4-2 \
|
|
|
|
|
libsasl2-2 \
|
2019-10-13 22:44:07 +00:00
|
|
|
|
python3-minimal \
|
2019-06-13 11:23:10 +00:00
|
|
|
|
unrar && \
|
2017-12-06 19:12:27 +00:00
|
|
|
|
echo "**** install calibre-web ****" && \
|
2019-06-05 03:48:24 +00: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 15:03:09 +00:00
|
|
|
|
https://github.com/janeczku/calibre-web/archive/${CALIBREWEB_RELEASE}.tar.gz && \
|
2017-03-21 01:34:52 +00: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 22:44:07 +00:00
|
|
|
|
pip3 install --no-cache-dir -U -r \
|
2017-03-21 01:34:52 +00:00
|
|
|
|
requirements.txt && \
|
2019-10-13 22:44:07 +00:00
|
|
|
|
pip3 install --no-cache-dir -U -r \
|
2017-06-07 06:33:43 +00:00
|
|
|
|
optional-requirements.txt && \
|
2020-06-05 20:41:16 +00: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 19:12:27 +00:00
|
|
|
|
echo "**** cleanup ****" && \
|
2019-06-05 03:48:24 +00:00
|
|
|
|
apt-get -y purge \
|
|
|
|
|
git \
|
2020-01-19 17:32:00 +00:00
|
|
|
|
libldap2-dev \
|
|
|
|
|
libsasl2-dev \
|
2019-10-13 22:44:07 +00:00
|
|
|
|
python3-pip && \
|
2019-06-05 03:48:24 +00:00
|
|
|
|
apt-get -y autoremove && \
|
2017-03-21 01:34:52 +00:00
|
|
|
|
rm -rf \
|
2019-06-05 03:48:24 +00:00
|
|
|
|
/tmp/* \
|
|
|
|
|
/var/lib/apt/lists/* \
|
|
|
|
|
/var/tmp/*
|
2019-06-02 14:42:37 +00:00
|
|
|
|
|
2017-03-21 01:34:52 +00:00
|
|
|
|
# add local files
|
|
|
|
|
COPY root/ /
|
|
|
|
|
|
|
|
|
|
# ports and volumes
|
2017-06-07 06:33:43 +00:00
|
|
|
|
EXPOSE 8083
|
2017-03-21 01:34:52 +00:00
|
|
|
|
VOLUME /books /config
|