decktape/Dockerfile

71 lines
2.0 KiB
Docker
Raw Normal View History

# syntax=docker/dockerfile:1.3.0-labs
FROM node:20.11-alpine3.19 as builder
2015-11-13 06:53:55 +03:00
ENV NODE_ENV production
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
WORKDIR /decktape
2018-04-26 13:26:34 +03:00
COPY package.json npm-shrinkwrap.json ./
COPY libs libs/
COPY plugins plugins/
COPY decktape.js ./
RUN npm install
FROM alpine:3.19.1
LABEL org.opencontainers.image.source="https://github.com/astefanutti/decktape"
ARG CHROMIUM_VERSION=126.0.6478.126-r1
2018-02-28 16:26:21 +03:00
ENV TERM xterm-color
RUN <<EOF cat > /etc/apk/repositories
http://dl-cdn.alpinelinux.org/alpine/edge/main
http://dl-cdn.alpinelinux.org/alpine/edge/community
http://dl-cdn.alpinelinux.org/alpine/edge/testing
EOF
# Chromium, CA certificates, fonts
2018-02-28 16:26:21 +03:00
# https://git.alpinelinux.org/cgit/aports/log/community/chromium
RUN apk update && apk upgrade && \
apk add --no-cache \
ca-certificates \
libstdc++ \
chromium=${CHROMIUM_VERSION} \
font-noto-emoji \
freetype \
harfbuzz \
nss \
ttf-freefont \
wqy-zenhei && \
# /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
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
# 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
ENTRYPOINT ["node", "/decktape/decktape.js", "--chrome-path", "chromium-browser", "--chrome-arg=--no-sandbox"]
2015-11-22 21:06:53 +03:00
CMD ["-h"]