2017-08-25 13:41:05 +03:00
|
|
|
FROM node:8.4.0-slim
|
2015-11-13 06:53:55 +03:00
|
|
|
|
2017-08-25 13:41:05 +03:00
|
|
|
ENV NODE_ENV production
|
2016-09-20 18:37:58 +03:00
|
|
|
ENV TERM xterm-color
|
|
|
|
|
2016-07-17 19:13:27 +03:00
|
|
|
RUN apt-get update && \
|
2017-08-25 13:41:05 +03:00
|
|
|
apt-get install -yq --no-install-recommends \
|
|
|
|
libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 \
|
|
|
|
libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 \
|
|
|
|
libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 \
|
|
|
|
libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \
|
|
|
|
libnss3
|
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
|
|
|
|
2017-08-25 13:41:05 +03:00
|
|
|
COPY package.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
|
|
|
|
2017-08-25 13:41:05 +03:00
|
|
|
RUN chown -R node:node /decktape
|
2015-11-14 00:08:41 +03:00
|
|
|
|
2017-09-04 13:13:53 +03:00
|
|
|
# https://github.com/moby/moby/issues/20295
|
|
|
|
RUN mkdir /slides
|
|
|
|
RUN chown -R node:node /slides
|
|
|
|
|
2017-08-25 13:41:05 +03:00
|
|
|
USER node
|
|
|
|
|
|
|
|
RUN npm install
|
2015-11-14 00:08:41 +03:00
|
|
|
|
2016-08-23 16:30:02 +03:00
|
|
|
WORKDIR /slides
|
|
|
|
|
2017-08-25 13:41:05 +03:00
|
|
|
# The --no-sandbox option is required for the moment
|
|
|
|
# https://github.com/GoogleChrome/puppeteer/issues/290
|
|
|
|
ENTRYPOINT ["node", "/decktape/decktape.js", "--no-sandbox"]
|
|
|
|
|
2015-11-22 21:06:53 +03:00
|
|
|
CMD ["-h"]
|