|
1 | 1 | FROM technosoft2000/alpine-base:3.8-1
|
2 | 2 | MAINTAINER Technosoft2000 < [email protected]>
|
3 |
| -LABEL image.version="1.2.2" \ |
| 3 | +LABEL image.version="1.2.3" \ |
4 | 4 | image.description="Docker image for Calibre Web, based on docker image of Alpine" \
|
5 |
| - image.date="2018-08-28" \ |
| 5 | + image.date="2018-09-09" \ |
6 | 6 | url.docker="https://hub.docker.com/r/technosoft2000/calibre-web" \
|
7 | 7 | url.github="https://github.com/Technosoft2000/docker-calibre-web" \
|
8 | 8 | url.support="https://cytec.us/forum"
|
9 | 9 |
|
10 | 10 | # Set basic environment settings
|
11 | 11 | ENV \
|
12 | 12 | # - VERSION: the docker image version (corresponds to the above LABEL image.version)
|
13 |
| - VERSION="1.2.2" \ |
14 |
| - |
| 13 | + VERSION="1.2.3" \ |
| 14 | + |
15 | 15 | # - LANG, LANGUAGE, LC_ALL: language dependent settings (Default: en_US.UTF-8)
|
16 | 16 | LANG="en_US.UTF-8" \
|
17 | 17 | LANGUAGE="en_US.UTF-8" \
|
|
39 | 39 |
|
40 | 40 | # - CALIBRE_PATH: Configure the path where the Calibre database is located
|
41 | 41 | CALIBRE_PATH="/books" \
|
42 |
| - |
| 42 | + |
43 | 43 | # - PKG_*: the needed applications for installation
|
44 | 44 | PKG_DEV="make gcc g++ python-dev openssl-dev libffi-dev libxml2-dev libxslt-dev" \
|
45 | 45 | PKG_PYTHON="ca-certificates py-pip python py-libxml2 py-libxslt py-lxml libev" \
|
@@ -74,14 +74,14 @@ RUN \
|
74 | 74 |
|
75 | 75 | apk add --no-cache --virtual=.build-dependencies wget ca-certificates && \
|
76 | 76 | apk add --no-cache parallel && \
|
77 |
| - |
| 77 | + |
78 | 78 | wget "https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub" \
|
79 | 79 | -O "/etc/apk/keys/sgerrand.rsa.pub" && \
|
80 |
| - |
| 80 | + |
81 | 81 | wget "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" \
|
82 | 82 | "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" \
|
83 | 83 | "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_I18N_PACKAGE_FILENAME" && \
|
84 |
| - |
| 84 | + |
85 | 85 | apk add --no-cache \
|
86 | 86 | "$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" \
|
87 | 87 | "$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" \
|
@@ -207,18 +207,27 @@ ENV \
|
207 | 207 | LC_ALL="C" \
|
208 | 208 | CALIBRE_INSTALLER_SOURCE_CODE_URL="https://raw.githubusercontent.com/kovidgoyal/calibre/master/setup/linux-installer.py"
|
209 | 209 |
|
210 |
| -RUN apk update && \ |
| 210 | +RUN \ |
| 211 | + apk update && \ |
211 | 212 | apk add --no-cache --upgrade \
|
212 |
| - bash \ |
213 |
| - ca-certificates \ |
214 |
| - gcc \ |
215 |
| - mesa-gl \ |
216 |
| - python \ |
217 |
| - qt5-qtbase-x11 \ |
218 |
| - xdg-utils \ |
219 |
| - xz \ |
220 |
| - wget && \ |
221 |
| - wget -O- ${CALIBRE_INSTALLER_SOURCE_CODE_URL} | python -c "import sys; main=lambda:sys.stderr.write('Download failed\n'); exec(sys.stdin.read()); main(install_dir='/opt', isolated=True)" && \ |
| 213 | + bash \ |
| 214 | + ca-certificates \ |
| 215 | + gcc \ |
| 216 | + libxcomposite \ |
| 217 | + mesa-gl \ |
| 218 | + python \ |
| 219 | + qt5-qtbase-x11 \ |
| 220 | + xdg-utils \ |
| 221 | + xz \ |
| 222 | + wget && \ |
| 223 | + |
| 224 | + wget -O- ${CALIBRE_INSTALLER_SOURCE_CODE_URL} | \ |
| 225 | + python -c \ |
| 226 | + "import sys; \ |
| 227 | + main=lambda:sys.stderr.write('Download failed\n'); \ |
| 228 | + exec(sys.stdin.read()); \ |
| 229 | + main(install_dir='/opt', isolated=True)" && \ |
| 230 | + |
222 | 231 | rm -rf /tmp/calibre-installer-cache && \
|
223 | 232 |
|
224 | 233 | # remove not needed packages
|
|
0 commit comments