-
Notifications
You must be signed in to change notification settings - Fork 0
/
worker.Dockerfile
42 lines (32 loc) · 1.63 KB
/
worker.Dockerfile
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
# From https://github.com/puppeteer/puppeteer/blob/main/docker/Dockerfile
FROM node:20
# Configure default locale (important for chrome-headless-shell).
ENV LANG=en_US.UTF-8
# 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 wget gnupg \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor -o /usr/share/keyrings/googlechrome-linux-keyring.gpg \
&& 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' \
&& apt-get update \
&& 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 \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& groupadd -r pptruser && useradd -rm -g pptruser -G audio,video pptruser
# Install pm2 for running the app
RUN npm install pm2 -g
# Install pnpm
RUN npm install pnpm -g
# Build the app
COPY server/package.json server/pnpm-lock.yaml /build/server/
RUN cd /build/server && pnpm install
USER pptruser
RUN /build/server/node_modules/.bin/rebrowser-puppeteer browsers install chrome
USER root
COPY server/ /build/server
RUN cd /build/server && pnpm run build
RUN cp -R /build/server /app
WORKDIR /app
ENTRYPOINT [ "/app/entrypoint-worker.sh" ]
CMD ["pm2-runtime", "/app/dist/src/worker.js"]