Compare commits

..

17 Commits
13 .. 95

Author SHA1 Message Date
j0nnymoe 4458a7d5b9 Merge pull request #27 from linuxserver/update-app.db
Update app.db
2019-01-03 21:02:31 +00:00
chbmb 3539b5f4bf Update README.md 2019-01-03 18:53:04 +00:00
CHBMB e87bc81576 app.db in correct folder 2019-01-03 18:51:48 +00:00
chbmb d31435640c Add files via upload 2019-01-03 18:49:04 +00:00
chbmb b729716f04 Delete app.db 2019-01-03 18:27:23 +00:00
sparklyballs 25cd75cbb2 Merge pull request #24 from linuxserver/rebase_alpine_3.8
rebase to alpine 3.8
2018-08-16 14:30:17 +01:00
sparklyballs c2db793227 rebase to alpine 3.8 2018-08-16 13:00:45 +01:00
chbmb 2473f3ba34 Merge pull request #21 from linuxserver/vulnerability
Readme updated with note about vulnerability
2018-07-03 22:05:36 +01:00
sparklyballs 3a3064b3e2 tweak grep 2018-07-03 21:30:03 +01:00
chbmb 10286b3309 Readme updated with note about vulnerability
Push new build to remove this [vulnerability](https://github.com/janeczku/calibre-web/issues/534)
2018-07-03 21:11:05 +01:00
sparklyballs fec0a1c28f Merge pull request #11 from linuxserver/deprecate_cpu_core
deprecate cpu_core routine lack of scaling
2018-01-05 19:31:01 +00:00
sparklyballs eeb3e9bb22 deprecate cpu_core routine lack of scaling 2018-01-05 17:09:16 +00:00
sparklyballs 0d3d473a7e Merge pull request #10 from linuxserver/3.7
bump to alpine 3.7 and fix continuation lines
2017-12-17 00:15:35 +00:00
sparklyballs ef46a9a195 configure workaround no longer required 2017-12-09 00:50:11 +00:00
sparklyballs 6bc7f90c50 bump to alpine 3.7 and fix continuation lines 2017-12-06 19:12:27 +00:00
sparklyballs 879514949c Merge pull request #9 from linuxserver/cpu_cores
use cpu core routine
2017-11-29 13:46:24 +00:00
sparklyballs c33a1ce348 use cpu core routine 2017-11-27 18:10:22 +00:00
3 changed files with 16 additions and 12 deletions
+10 -12
View File
@@ -1,13 +1,13 @@
FROM lsiobase/alpine.python:3.6
MAINTAINER sparklyballs,chbmb
FROM lsiobase/alpine.python:3.8
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="chbmb"
# install build packages
RUN \
echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \
file \
fontconfig-dev \
@@ -21,14 +21,14 @@ RUN \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
make \
perl-dev \
python2-dev \
tiff-dev \
xz \
zlib-dev && \
# install runtime packages
echo "**** install runtime packages ****" && \
apk add --no-cache \
fontconfig \
freetype \
@@ -39,12 +39,12 @@ RUN \
libpng \
libwebp \
libxml2 \
libxslt \
tiff \
zlib && \
# compile imagemagic
echo "**** compile imagemagic ****" && \
IMAGEMAGICK_VER=$(curl --silent http://www.imagemagick.org/download/digest.rdf \
| grep ImageMagick-6.*tar.xz | sed 's/\(.*\).tar.*/\1/' \
| grep ImageMagick-6.*tar.gz | sed 's/\(.*\).tar.*/\1/' \
| sed 's/^.*ImageMagick-/ImageMagick-/') && \
mkdir -p \
/tmp/imagemagick && \
@@ -75,8 +75,7 @@ RUN \
make install && \
find / -name '.packlist' -o -name 'perllocal.pod' \
-o -name '*.bs' -delete && \
# install calibre-web
echo "**** install calibre-web ****" && \
mkdir -p \
/app/calibre-web && \
curl -o \
@@ -90,8 +89,7 @@ RUN \
requirements.txt && \
pip install --no-cache-dir -U -r \
optional-requirements.txt && \
# cleanup
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
rm -rf \
+6
View File
@@ -98,5 +98,11 @@ To reverse proxy with our Letsencrypt docker container use the following locatio
## Versions
+ **03.01.19:** Remove guest user from default app.db
+ **16.08.18:** Rebase to alpine 3.8.
+ **03.07.18:** New build pushed, all versions below `67` have [vulnerability](https://github.com/janeczku/calibre-web/issues/534)
+ **05.01.18:** Deprecate cpu_core routine lack of scaling.
+ **06.12.17:** Rebase to alpine 3.7.
+ **27.11.17:** Use cpu core counting routine to speed up build time.
+ **24.07.17:** Curl version for imagemagick.
+ **17.07.17:** Initial release.
Binary file not shown.