2018-08-09 21:13:27 +03:00
|
|
|
FROM node:10-alpine as builder
|
2015-11-13 06:53:55 +03:00
|
|
|
|
2017-08-25 13:41:05 +03:00
|
|
|
ENV NODE_ENV production
|
2018-01-03 13:22:46 +03:00
|
|
|
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
|
|
|
|
|
2018-02-28 16:26:21 +03:00
|
|
|
RUN apk add --no-cache --virtual .gyp python make g++
|
2015-11-13 06:53:55 +03:00
|
|
|
|
2015-11-14 00:08:41 +03:00
|
|
|
WORKDIR /decktape
|
2015-11-15 22:29:34 +03:00
|
|
|
|
2018-04-26 13:26:34 +03:00
|
|
|
COPY package.json npm-shrinkwrap.json ./
|
2015-11-22 21:02:45 +03:00
|
|
|
COPY libs libs/
|
|
|
|
COPY plugins plugins/
|
2015-11-23 00:50:47 +03:00
|
|
|
COPY decktape.js ./
|
2015-11-22 21:02:45 +03:00
|
|
|
|
2018-04-26 12:35:32 +03:00
|
|
|
# Force HummusJS build from source
|
|
|
|
# See https://github.com/galkahana/HummusJS/issues/230
|
2018-02-28 16:26:21 +03:00
|
|
|
RUN npm install && \
|
2018-04-26 12:35:32 +03:00
|
|
|
node_modules/hummus/node_modules/.bin/node-pre-gyp clean install --build-from-source -C node_modules/hummus/ && \
|
2018-01-03 13:22:46 +03:00
|
|
|
rm -rf node_modules/hummus/src && \
|
2018-02-28 16:26:21 +03:00
|
|
|
rm -rf node_modules/hummus/build
|
2015-11-14 00:08:41 +03:00
|
|
|
|
2018-08-09 21:13:27 +03:00
|
|
|
FROM alpine:3.8
|
2017-09-04 13:13:53 +03:00
|
|
|
|
2018-02-28 16:26:21 +03:00
|
|
|
ENV TERM xterm-color
|
|
|
|
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
|
|
|
|
|
|
|
|
# Chromium
|
|
|
|
# https://git.alpinelinux.org/cgit/aports/log/community/chromium
|
|
|
|
RUN apk add --no-cache ca-certificates ttf-freefont && \
|
|
|
|
apk add --no-cache chromium --repository http://dl-cdn.alpinelinux.org/alpine/edge/community && \
|
2018-07-11 20:52:30 +03:00
|
|
|
apk add --no-cache wqy-zenhei --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing && \
|
2018-08-09 20:54:10 +03:00
|
|
|
# /etc/fonts/conf.d/44-wqy-zenhei.conf overrides 'monospace' matching FreeMono.ttf in /etc/fonts/conf.d/69-unifont.conf
|
|
|
|
mv /etc/fonts/conf.d/44-wqy-zenhei.conf /etc/fonts/conf.d/74-wqy-zenhei.conf && \
|
2018-02-28 16:26:21 +03:00
|
|
|
rm -rf /var/cache/apk/*
|
|
|
|
|
|
|
|
# Node.js
|
|
|
|
COPY --from=builder /usr/local/bin/node /usr/local/bin/
|
|
|
|
|
|
|
|
# DeckTape
|
|
|
|
COPY --from=builder /decktape /decktape
|
|
|
|
|
|
|
|
RUN addgroup -g 1000 node && \
|
|
|
|
adduser -u 1000 -G node -s /bin/sh -D node && \
|
|
|
|
mkdir /slides && \
|
|
|
|
chown node:node /slides
|
2017-08-25 13:41:05 +03:00
|
|
|
|
2016-08-23 16:30:02 +03:00
|
|
|
WORKDIR /slides
|
|
|
|
|
2018-02-28 16:26:21 +03:00
|
|
|
USER node
|
|
|
|
|
|
|
|
# The --no-sandbox option is required, or --cap-add=SYS_ADMIN to docker run command
|
|
|
|
# https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker
|
2017-08-25 13:41:05 +03:00
|
|
|
# https://github.com/GoogleChrome/puppeteer/issues/290
|
2018-02-28 16:26:21 +03:00
|
|
|
# https://github.com/jessfraz/dockerfiles/issues/65
|
|
|
|
# https://github.com/jessfraz/dockerfiles/issues/156
|
|
|
|
# https://github.com/jessfraz/dockerfiles/issues/341
|
2018-01-03 13:22:46 +03:00
|
|
|
ENTRYPOINT ["node", "/decktape/decktape.js", "--no-sandbox", "--executablePath", "chromium-browser"]
|
2017-08-25 13:41:05 +03:00
|
|
|
|
2015-11-22 21:06:53 +03:00
|
|
|
CMD ["-h"]
|