enzostvs HF staff commited on
Commit
fe25dcd
β€’
1 Parent(s): f60638a

update dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -10
Dockerfile CHANGED
@@ -4,16 +4,10 @@ FROM node:18
4
  USER 1000
5
 
6
  ENV PUPPETEER_SKIP_DOWNLOAD=True
7
- RUN apt-get update \
8
- && apt-get install -y fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf \
9
- --no-install-recommends \
10
- && rm -rf /var/lib/apt/lists/*;
11
-
12
- RUN apt-get update \
13
- && apt-get update \
14
- && apt-get install -y chromium \
15
- --no-install-recommends \
16
- && rm -rf /var/lib/apt/lists/*;
17
  # Set the working directory in the container
18
  WORKDIR /usr/src/app
19
 
 
4
  USER 1000
5
 
6
  ENV PUPPETEER_SKIP_DOWNLOAD=True
7
+
8
+ RUN apt-get update
9
+ RUN apt-get install chromium -y
10
+
 
 
 
 
 
 
11
  # Set the working directory in the container
12
  WORKDIR /usr/src/app
13