mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 00:22:14 +01:00
46 lines
1.6 KiB
Docker
46 lines
1.6 KiB
Docker
FROM debian:stretch-slim
|
|
|
|
LABEL authors="Julien Neuhart <j.neuhart@thecodingmachine.com>"
|
|
|
|
# |--------------------------------------------------------------------------
|
|
# | Libraries
|
|
# |--------------------------------------------------------------------------
|
|
# |
|
|
# | Installs all required libraries.
|
|
# |
|
|
|
|
RUN echo "deb http://httpredir.debian.org/debian/ stretch main contrib non-free" > /etc/apt/sources.list &&\
|
|
apt-get update &&\
|
|
apt-get install -y xvfb wkhtmltopdf pdftk unoconv ttf-mscorefonts-installer &&\
|
|
ln -s /usr/bin/xvfb-run /usr/local/bin/xvfb-run &&\
|
|
ln -s /usr/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf &&\
|
|
ln -s /usr/bin/pdftk /usr/local/bin/pdftk &&\
|
|
ln -s /usr/bin/unoconv /usr/local/bin/unoconv
|
|
|
|
RUN apt-get install -y curl gnupg &&\
|
|
curl -sL https://deb.nodesource.com/setup_8.x | bash - &&\
|
|
apt-get update &&\
|
|
apt-get install -y nodejs
|
|
|
|
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - &&\
|
|
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list &&\
|
|
apt-get update &&\
|
|
apt-get install -y yarn bzip2 &&\
|
|
yarn global add markdown-pdf --prefix /usr/local
|
|
|
|
# |--------------------------------------------------------------------------
|
|
# | Gotenberg
|
|
# |--------------------------------------------------------------------------
|
|
# |
|
|
# | All Gotenberg related stuff.
|
|
# |
|
|
|
|
COPY .ci/gotenberg /usr/bin/gotenberg
|
|
RUN ln -s /usr/bin/gotenberg /usr/local/bin/gotenberg
|
|
|
|
COPY .ci/gotenberg.yml /gotenberg/gotenberg.yml
|
|
|
|
WORKDIR /gotenberg
|
|
|
|
EXPOSE 3000
|
|
CMD ["gotenberg"] |