docker-calibre-web/Dockerfile

106 lines
2.1 KiB
Docker
Raw Normal View History

2017-06-06 23:33:43 -07:00
FROM lsiobase/alpine.python:3.6
2017-07-17 09:12:48 -07:00
MAINTAINER sparklyballs,chbmb
2017-03-20 18:34:52 -07:00
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
2017-07-17 11:52:33 -07:00
# package versions
ARG IMAGEMAGICK_VER="6.9.9-0"
2017-03-20 18:34:52 -07:00
# install build packages
RUN \
apk add --no-cache --virtual=build-dependencies \
2017-07-17 11:52:33 -07:00
file \
fontconfig-dev \
freetype-dev \
2017-03-20 18:34:52 -07:00
g++ \
gcc \
2017-07-17 11:52:33 -07:00
ghostscript-dev \
lcms2-dev \
libjpeg-turbo-dev \
libpng-dev \
libtool \
libwebp-dev \
libxml2-dev \
2017-03-20 18:34:52 -07:00
make \
2017-07-17 11:52:33 -07:00
perl-dev \
python2-dev \
tiff-dev \
xz \
zlib-dev && \
2017-03-20 18:34:52 -07:00
2017-07-17 11:52:33 -07:00
# install runtime packages
2017-03-20 18:34:52 -07:00
apk add --no-cache \
2017-07-17 11:52:33 -07:00
fontconfig \
freetype \
ghostscript \
lcms2 \
libjpeg-turbo \
libltdl \
libpng \
libwebp \
libxml2 \
tiff \
zlib && \
# compile imagemagic
mkdir -p \
/tmp/imagemagick && \
curl -o \
/tmp/imagemagick-src.tar.xz -L \
"http://www.imagemagick.org/download/releases/ImageMagick-${IMAGEMAGICK_VER}.tar.xz" && \
tar xf \
/tmp/imagemagick-src.tar.xz -C \
/tmp/imagemagick --strip-components=1 && \
cd /tmp/imagemagick && \
sed -i -e \
's:DOCUMENTATION_PATH="${DATA_DIR}/doc/${DOCUMENTATION_RELATIVE_PATH}":DOCUMENTATION_PATH="/usr/share/doc/imagemagick":g' \
configure && \
./configure \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--prefix=/usr \
--sysconfdir=/etc \
--with-gs-font-dir=/usr/share/fonts/Type1 \
--with-gslib \
--with-lcms2 \
--with-modules \
--without-threads \
--without-x \
--with-tiff \
--with-xml && \
make && \
make install && \
find / -name '.packlist' -o -name 'perllocal.pod' \
-o -name '*.bs' -delete && \
2017-03-20 18:34:52 -07:00
# install calibre-web
mkdir -p \
/app/calibre-web && \
curl -o \
/tmp/calibre-web.tar.gz -L \
https://github.com/janeczku/calibre-web/archive/master.tar.gz && \
tar xf \
/tmp/calibre-web.tar.gz -C \
/app/calibre-web --strip-components=1 && \
cd /app/calibre-web && \
pip install --no-cache-dir -U -r \
requirements.txt && \
2017-06-06 23:33:43 -07:00
pip install --no-cache-dir -U -r \
optional-requirements.txt && \
2017-03-20 18:34:52 -07:00
# cleanup
apk del --purge \
build-dependencies && \
rm -rf \
/tmp/*
# 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