From 9a61220bc141e0b2497c6800ae51dc8d621e8a83 Mon Sep 17 00:00:00 2001 From: Jonathan Crooke Date: Sun, 10 Nov 2019 15:01:26 +0100 Subject: [PATCH 1/3] Install libnss3 in order to fix .pdf -> .mobi --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b637a3e..5d07ec0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ RUN \ echo "**** install runtime packages ****" && \ apt-get install -y \ imagemagick \ + libnss3 && \ libxcomposite1 \ python3-minimal \ unrar && \ From 2dd71fe6b518637254e6129875f69976af7034eb Mon Sep 17 00:00:00 2001 From: chbmb Date: Sun, 10 Nov 2019 14:48:12 +0000 Subject: [PATCH 2/3] Remove `&&` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5d07ec0..c697dd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN \ echo "**** install runtime packages ****" && \ apt-get install -y \ imagemagick \ - libnss3 && \ + libnss3 \ libxcomposite1 \ python3-minimal \ unrar && \ From 2bfeb793fdb5edfb484ea009e132da5bb9c12723 Mon Sep 17 00:00:00 2001 From: Jonathan Crooke Date: Sun, 10 Nov 2019 17:37:11 +0100 Subject: [PATCH 3/3] Add other archs --- Dockerfile.aarch64 | 1 + Dockerfile.armhf | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index b72caca..d3b6f9d 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -23,6 +23,7 @@ RUN \ echo "**** install runtime packages ****" && \ apt-get install -y \ imagemagick \ + libnss3 \ libxcomposite1 \ python3-minimal \ unrar && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index a72cece..4abeeb9 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -23,6 +23,7 @@ RUN \ echo "**** install runtime packages ****" && \ apt-get install -y \ imagemagick \ + libnss3 \ libxcomposite1 \ python3-minimal \ unrar && \