Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
update dockerfile
Browse files- 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 |
-
#
|
16 |
-
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD
|
17 |
-
ENV
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 . .
|