2023-11-02 10:58:00 +00:00
|
|
|
FROM node:20@sha256:cb7cd40ba6483f37f791e1aace576df449fc5f75332c19ff59e2c6064797160e
|
2022-07-25 12:34:01 +00:00
|
|
|
|
|
|
|
# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
|
2023-05-02 06:53:40 +00:00
|
|
|
# Note: this installs the necessary libs to make the bundled version of Chrome that Puppeteer
|
2022-07-25 12:34:01 +00:00
|
|
|
# installs, work.
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y wget gnupg \
|
2023-01-02 10:00:16 +00:00
|
|
|
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor -o /usr/share/keyrings/googlechrome-linux-keyring.gpg \
|
2024-01-15 06:33:52 +00:00
|
|
|
&& sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/googlechrome-linux-keyring.gpg] https://dl-ssl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
|
2022-07-25 12:34:01 +00:00
|
|
|
&& apt-get update \
|
2023-10-12 08:56:23 +00:00
|
|
|
&& apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-khmeros fonts-kacst fonts-freefont-ttf libxss1 dbus dbus-x11 \
|
2022-07-25 12:34:01 +00:00
|
|
|
--no-install-recommends \
|
2023-10-12 08:56:23 +00:00
|
|
|
&& service dbus start \
|
2022-10-11 11:20:45 +00:00
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
&& groupadd -r pptruser && useradd -rm -g pptruser -G audio,video pptruser
|
|
|
|
|
|
|
|
USER pptruser
|
2022-07-25 12:34:01 +00:00
|
|
|
|
|
|
|
WORKDIR /home/pptruser
|
|
|
|
|
2023-03-28 09:27:50 +00:00
|
|
|
COPY puppeteer-browsers-latest.tgz puppeteer-latest.tgz puppeteer-core-latest.tgz ./
|
2022-07-25 12:34:01 +00:00
|
|
|
|
2023-10-12 08:56:23 +00:00
|
|
|
ENV DBUS_SESSION_BUS_ADDRESS autolaunch:
|
|
|
|
|
2023-03-28 09:27:50 +00:00
|
|
|
# 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 \
|
2022-07-25 12:34:01 +00:00
|
|
|
&& (node -e "require('child_process').execSync(require('puppeteer').executablePath() + ' --credits', {stdio: 'inherit'})" > THIRD_PARTY_NOTICES)
|
|
|
|
|
|
|
|
CMD ["google-chrome-stable"]
|