-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
31 lines (23 loc) · 946 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
FROM node:6.10.2
MAINTAINER Dan Lynn <docker@danlynn.org>
WORKDIR /myapp
# run wkhtmltos3.js script using node on container start
ENTRYPOINT ["node", "src/wkhtmltos3.js"]
# install dependencies
RUN \
apt-get update -y && \
DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential xorg libssl-dev libxrender-dev wget
# install wkhtmltopdf for rendering html pages into images
RUN \
wget https://downloads.wkhtmltopdf.org/0.12/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz && \
tar xf wkhtmltox-0.12.4_linux-generic-amd64.tar.xz -C / && \
rm wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
ENV PATH="/wkhtmltox/bin:${PATH}"
# install imagemagick in order to support the --trim command line option
# as well as everything else that imagemagick can do
RUN apt-get install -y imagemagick=8:6.8.9.9-5+deb8u8 --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
COPY src src
ADD package.json /myapp/
RUN \
npm install