Skip to content

Commit 6e8e2fc

Browse files
* added missing dependency **libxcomposite** which is needed for PDF related conversions via ebook-convert
* updated Libraries - Calibre converter ebook-convert (calibre 3.30.0) => (calibre 3.31.0)
1 parent 7af0aeb commit 6e8e2fc

File tree

3 files changed

+65
-32
lines changed

3 files changed

+65
-32
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
**2018-09-09 - v1.2.3**
2+
* added missing dependency **libxcomposite** which is needed for PDF related conversions via `ebook-convert`
3+
* Updated Libraries
4+
- Calibre converter ebook-convert (calibre 3.30.0) => (calibre 3.31.0)
5+
6+
| **Program library** | **Installed Version** |
7+
| ------------------- | --------------------- |
8+
| Sqlite | v3.24.0 |
9+
| lxml | v4.2.4.0 |
10+
| Image Magick | ImageMagick 6.9.10-10 Q16 x86_64 2018-08-15 https://www.imagemagick.org |
11+
| kindlegen | Amazon kindlegen(Linux) V2.9 build 1028-0897292 |
12+
| Flask | v1.0.2 |
13+
| Babel | v2.6.0 |
14+
| PyPdf | v1.26.0 |
15+
| pySqlite | v2.6.0 |
16+
| Python | 2.7.15 (default, May 10 2018, 21:00:22) [GCC 6.4.0] |
17+
| Sqlalchemy | v1.2.11 |
18+
| Iso 639 | v0.4.5 |
19+
| Calibre converter | ebook-convert (calibre 3.31.0) |
20+
| Requests | v2.19.1 |
21+
| Gevent | v1.3.6 |
22+
| Flask Login | v0.4.1 |
23+
| Flask Principal | v0.4.0 |
24+
25+
* `ebook-convert` supports the following target formats:
26+
**EPUB, AZW3, MOBI, DOCX, FB2, HTMLZ, LIT, LRF, PDB, PDF, PMLZ, RB, RTF, SNB, TCR, TXT, TXTZ, ZIP**
27+
see also at https://manual.calibre-ebook.com/generated/en/ebook-convert.html
28+
129
**2018-08-28 - v1.2.2**
230

331
* glibc locale are generated now for the following definitions: [availaible locale](LOCALE.md).

Dockerfile

+28-19
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
FROM technosoft2000/alpine-base:3.8-1
22
MAINTAINER Technosoft2000 <[email protected]>
3-
LABEL image.version="1.2.2" \
3+
LABEL image.version="1.2.3" \
44
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" \
66
url.docker="https://hub.docker.com/r/technosoft2000/calibre-web" \
77
url.github="https://github.com/Technosoft2000/docker-calibre-web" \
88
url.support="https://cytec.us/forum"
99

1010
# Set basic environment settings
1111
ENV \
1212
# - VERSION: the docker image version (corresponds to the above LABEL image.version)
13-
VERSION="1.2.2" \
14-
13+
VERSION="1.2.3" \
14+
1515
# - LANG, LANGUAGE, LC_ALL: language dependent settings (Default: en_US.UTF-8)
1616
LANG="en_US.UTF-8" \
1717
LANGUAGE="en_US.UTF-8" \
@@ -39,7 +39,7 @@ ENV \
3939

4040
# - CALIBRE_PATH: Configure the path where the Calibre database is located
4141
CALIBRE_PATH="/books" \
42-
42+
4343
# - PKG_*: the needed applications for installation
4444
PKG_DEV="make gcc g++ python-dev openssl-dev libffi-dev libxml2-dev libxslt-dev" \
4545
PKG_PYTHON="ca-certificates py-pip python py-libxml2 py-libxslt py-lxml libev" \
@@ -74,14 +74,14 @@ RUN \
7474

7575
apk add --no-cache --virtual=.build-dependencies wget ca-certificates && \
7676
apk add --no-cache parallel && \
77-
77+
7878
wget "https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub" \
7979
-O "/etc/apk/keys/sgerrand.rsa.pub" && \
80-
80+
8181
wget "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" \
8282
"$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" \
8383
"$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_I18N_PACKAGE_FILENAME" && \
84-
84+
8585
apk add --no-cache \
8686
"$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" \
8787
"$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" \
@@ -207,18 +207,27 @@ ENV \
207207
LC_ALL="C" \
208208
CALIBRE_INSTALLER_SOURCE_CODE_URL="https://raw.githubusercontent.com/kovidgoyal/calibre/master/setup/linux-installer.py"
209209

210-
RUN apk update && \
210+
RUN \
211+
apk update && \
211212
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+
222231
rm -rf /tmp/calibre-installer-cache && \
223232

224233
# remove not needed packages

README.md

+9-13
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,10 @@ And if you are interested in the original __Calibre__ ebook management tool then
3838

3939
## Updates ##
4040

41-
**2018-08-28 - v1.2.2**
42-
43-
* glibc locale are generated now for the following definitions: [availaible locale](LOCALE.md).
44-
* fixed issue **ebook-convert : Error: unsupported locale setting** #34
45-
* updated README.md with new sections:
46-
- Configuration of a converter
47-
- Known issues
48-
- Container Locale
41+
**2018-09-09 - v1.2.3**
42+
* added missing dependency **libxcomposite** which is needed for PDF related conversions via `ebook-convert`
4943
* Updated Libraries
50-
- Sqlalchemy v1.2.10 => v1.2.11
51-
- Calibre converter ebook-convert (calibre 3.29.0) => (calibre 3.30.0)
52-
- Gevent v1.3.5 => v1.3.6
44+
- Calibre converter ebook-convert (calibre 3.30.0) => (calibre 3.31.0)
5345

5446
| **Program library** | **Installed Version** |
5547
| ------------------- | --------------------- |
@@ -64,12 +56,16 @@ And if you are interested in the original __Calibre__ ebook management tool then
6456
| Python | 2.7.15 (default, May 10 2018, 21:00:22) [GCC 6.4.0] |
6557
| Sqlalchemy | v1.2.11 |
6658
| Iso 639 | v0.4.5 |
67-
| Calibre converter | ebook-convert (calibre 3.30.0) |
68-
| Gevent | v1.3.6 |
59+
| Calibre converter | ebook-convert (calibre 3.31.0) |
6960
| Requests | v2.19.1 |
61+
| Gevent | v1.3.6 |
7062
| Flask Login | v0.4.1 |
7163
| Flask Principal | v0.4.0 |
7264

65+
* `ebook-convert` supports the following target formats:
66+
**EPUB, AZW3, MOBI, DOCX, FB2, HTMLZ, LIT, LRF, PDB, PDF, PMLZ, RB, RTF, SNB, TCR, TXT, TXTZ, ZIP**
67+
see also at https://manual.calibre-ebook.com/generated/en/ebook-convert.html
68+
7369
For previous changes see at [full changelog](CHANGELOG.md).
7470

7571
## Features ##

0 commit comments

Comments
 (0)