Update Dockerfile [SCI-4171]

This commit is contained in:
Oleksii Kriuchykhin 2019-12-19 15:54:06 +01:00
parent b945171f2f
commit 7694b2ac6d

View file

@ -3,11 +3,6 @@ MAINTAINER BioSistemika <info@biosistemika.com>
ARG WKHTMLTOPDF_PACKAGE_URL=https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.stretch_amd64.deb ARG WKHTMLTOPDF_PACKAGE_URL=https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.stretch_amd64.deb
RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - && \
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' >> /etc/apt/sources.list && \
wget -q -O /usr/bin/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/78.0.3904.70/chromedriver_linux64.zip && \
unzip /usr/bin/chromedriver_linux64.zip -d /usr/bin/
# additional dependecies # additional dependecies
# libreoffice for file preview generation # libreoffice for file preview generation
RUN apt-get update -qq && \ RUN apt-get update -qq && \
@ -24,7 +19,7 @@ RUN apt-get update -qq && \
sudo graphviz --no-install-recommends \ sudo graphviz --no-install-recommends \
libreoffice \ libreoffice \
libfile-mimeinfo-perl \ libfile-mimeinfo-perl \
google-chrome-stable=78.* && \ chromium-driver && \
wget -q -O /tmp/wkhtmltox_amd64.deb $WKHTMLTOPDF_PACKAGE_URL && \ wget -q -O /tmp/wkhtmltox_amd64.deb $WKHTMLTOPDF_PACKAGE_URL && \
apt-get install -y /tmp/wkhtmltox_amd64.deb && \ apt-get install -y /tmp/wkhtmltox_amd64.deb && \
rm /tmp/wkhtmltox_amd64.deb && \ rm /tmp/wkhtmltox_amd64.deb && \