-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
36 lines (25 loc) · 1.14 KB
/
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
FROM node:14.15.4
# 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 Chromium 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 | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.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-kacst fonts-freefont-ttf libxss1 libxext6 xvfb libgtk2.0-0 libxtst6 libgconf-2-4 libnss3 libasound2 \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN echo 'kernel.unprivileged_userns_clone=1' > /etc/sysctl.d/userns.conf
ENV NODE_ENV=production
ARG NODE_ENV=production
RUN adduser --system app
RUN mkdir -p /app
WORKDIR /app
RUN chown -R app:root /app
COPY --chown=app:root . /app
RUN ls -l /app
USER app
RUN npm ci
RUN npm run build
CMD ["npm", "start"]