enzostvs HF staff commited on
Commit
8d97987
·
1 Parent(s): e32b26d

update dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -5
Dockerfile CHANGED
@@ -12,11 +12,18 @@ COPY --chown=1000 package.json package-lock.json ./
12
  # Install dependencies
13
  RUN npm install
14
 
15
- # Set the environment variable for Puppeteer's download path.
16
- ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
17
- ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
18
- ENV PUPPETEER_DOWNLOAD_PATH=/root/.cache/puppeteer
19
- ENV PUPPETEER_CACHE_DIR=/root/.cache/puppeteer
 
 
 
 
 
 
 
20
 
21
  # Copy the rest of the application files to the container
22
  COPY --chown=1000 . .
 
12
  # Install dependencies
13
  RUN npm install
14
 
15
+ # We don't need the standalone Chromium
16
+ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
17
+ ENV CHROME_BIN=/usr/bin/google-chrome
18
+
19
+ # Install Google Chrome Stable and fonts
20
+ # Note: this installs the necessary libs to make the browser work with Puppeteer.
21
+ RUN apt-get update && apt-get install curl gnupg -y \
22
+ && curl --location --silent https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
23
+ && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
24
+ && apt-get update \
25
+ && apt-get install google-chrome-stable -y --no-install-recommends \
26
+ && rm -rf /var/lib/apt/lists/*
27
 
28
  # Copy the rest of the application files to the container
29
  COPY --chown=1000 . .