-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Expand file tree
/
Copy pathDockerfile
More file actions
48 lines (38 loc) · 1.95 KB
/
Copy pathDockerfile
File metadata and controls
48 lines (38 loc) · 1.95 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
FROM node:24-bookworm@sha256:be23f54a88d34e8824c741b19b91064094f92c1c97b194144bfc8b50d67258e2
# Configure default locale (important for chrome-headless-shell).
ENV LANG=en_US.UTF-8
# UID of the non-root user 'pptruser'
ENV PPTRUSER_UID=10042
# Attempts to start a new DBUS session if none is present
ENV DBUS_SESSION_BUS_ADDRESS=autolaunch:
# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
# Note: this installs the necessary libs to make the bundled version of Chrome that Puppeteer
# installs, work.
RUN apt-get update \
&& apt-get install -y --no-install-recommends fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-khmeros \
fonts-kacst fonts-freefont-ttf dbus dbus-x11
# Add pptruser.
RUN groupadd -r pptruser && useradd -u $PPTRUSER_UID -rm -g pptruser -G audio,video pptruser
USER $PPTRUSER_UID
WORKDIR /home/pptruser
COPY puppeteer-browsers-latest.tgz puppeteer-latest.tgz puppeteer-core-latest.tgz ./
# Install @puppeteer/browsers, puppeteer and puppeteer-core into /home/pptruser/node_modules.
RUN npm i ./puppeteer-browsers-latest.tgz ./puppeteer-core-latest.tgz ./puppeteer-latest.tgz \
&& rm ./puppeteer-browsers-latest.tgz ./puppeteer-core-latest.tgz ./puppeteer-latest.tgz
# Install system dependencies as root.
USER root
# Overriding the cache directory to install the deps for the Chrome
# version installed for pptruser.
RUN PUPPETEER_CACHE_DIR=/home/pptruser/.cache/puppeteer \
npx puppeteer browsers install chrome --install-deps \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
USER $PPTRUSER_UID
# Generate THIRD_PARTY_NOTICES using chrome --credits.
ARG JS_CODE=" \
import { execSync } from 'node:child_process'; \
import puppeteer from 'puppeteer'; \
const executable = await puppeteer.executablePath(); \
execSync(executable + ' --credits', {stdio: 'inherit'}); \
"
RUN node --input-type=module -e "$JS_CODE" > THIRD_PARTY_NOTICES