From 20ab1c4a74f797c957bc809bf5d6587aefd91606 Mon Sep 17 00:00:00 2001 From: remi-filament <30716308+remi-filament@users.noreply.github.com> Date: Wed, 23 Jan 2019 11:32:54 +0100 Subject: [PATCH] Fix wkhtml installation --- 10.0.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10.0.Dockerfile b/10.0.Dockerfile index 80211aa..c99bd55 100644 --- a/10.0.Dockerfile +++ b/10.0.Dockerfile @@ -40,7 +40,7 @@ RUN set -x; \ curl -o wkhtmltox.deb -SL https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.jessie_amd64.deb &&\ echo '4d104ff338dc2d2083457b3b1e9baab8ddf14202 wkhtmltox.deb' | sha1sum -c - &&\ apt-get update &&\ - apt-get install -y --no-install-recommends ./wkhtmltox.deb &&\ + dpkg --install wkhtmltox.deb &&\ apt-get install -y --no-install-recommends postgresql-client &&\ apt-get install -y --no-install-recommends ${APT_DEPS} &&\ curl https://bootstrap.pypa.io/get-pip.py | python /dev/stdin &&\ -- GitLab