mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 00:22:14 +01:00
45 lines
1.7 KiB
Docker
45 lines
1.7 KiB
Docker
FROM debian:stretch-slim
|
||
|
||
LABEL authors="Julien Neuhart <j.neuhart@thecodingmachine.com>"
|
||
|
||
# |--------------------------------------------------------------------------
|
||
# | Common libraries
|
||
# |--------------------------------------------------------------------------
|
||
# |
|
||
# | Libraries used in the build process of this image.
|
||
# |
|
||
|
||
RUN echo "deb http://httpredir.debian.org/debian/ stretch main contrib non-free" > /etc/apt/sources.list &&\
|
||
apt-get update &&\
|
||
apt-get install -y curl wget
|
||
|
||
# |--------------------------------------------------------------------------
|
||
# | PM2
|
||
# |--------------------------------------------------------------------------
|
||
# |
|
||
# | Installs PM2 for launching programs in background and with failure
|
||
# | recovering. In our case: Chrome (headless) and Office (headless).
|
||
# |
|
||
|
||
RUN curl -sL https://raw.githubusercontent.com/Unitech/pm2/master/packager/setup.deb.sh | bash -
|
||
|
||
# |--------------------------------------------------------------------------
|
||
# | Chrome
|
||
# |--------------------------------------------------------------------------
|
||
# |
|
||
# | Installs Chrome for HTML and Markdown conversions.
|
||
# |
|
||
|
||
RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - &&\
|
||
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | tee /etc/apt/sources.list.d/google-chrome.list &&\
|
||
apt-get update &&\
|
||
apt-get -y install google-chrome-stable
|
||
|
||
# |--------------------------------------------------------------------------
|
||
# | Unoconv
|
||
# |--------------------------------------------------------------------------
|
||
# |
|
||
# | Installs MS fonts and unoconv for Office documents conversions.
|
||
# |
|
||
|
||
RUN apt-get -y install ttf-mscorefonts-installer unoconv |