Spaces:
Running
Running
Commit
·
78cd2ff
1
Parent(s):
03b799f
changed base image :/
Browse files- Dockerfile +12 -15
Dockerfile
CHANGED
@@ -1,26 +1,23 @@
|
|
1 |
-
FROM node:
|
2 |
|
|
|
|
|
|
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
ENV PATH="/usr/lib/chromium/:${PATH}"
|
13 |
-
RUN ln -s /usr/lib/chromium/chromium-launcher.sh /usr/local/bin/chrome
|
14 |
-
|
15 |
-
# RUN npx puppeteer browsers install chrome
|
16 |
-
ENV CHROME_BIN=/usr/bin/chromium-browser
|
17 |
|
18 |
COPY . /app
|
19 |
WORKDIR /app
|
20 |
|
21 |
RUN ls -lh
|
22 |
|
23 |
-
|
24 |
RUN chmod 777 /app;
|
25 |
|
26 |
EXPOSE 8080
|
|
|
1 |
+
FROM node:slim AS app
|
2 |
|
3 |
+
# We don't need the standalone Chromium
|
4 |
+
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
|
5 |
+
ENV CHROME_BIN=/usr/bin/google-chrome
|
6 |
|
7 |
+
# Install Google Chrome Stable and fonts
|
8 |
+
# Note: this installs the necessary libs to make the browser work with Puppeteer.
|
9 |
+
RUN apt-get update && apt-get install curl gnupg -y \
|
10 |
+
&& curl --location --silent https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
|
11 |
+
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
|
12 |
+
&& apt-get update \
|
13 |
+
&& apt-get install google-chrome-stable -y --no-install-recommends \
|
14 |
+
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
COPY . /app
|
17 |
WORKDIR /app
|
18 |
|
19 |
RUN ls -lh
|
20 |
|
|
|
21 |
RUN chmod 777 /app;
|
22 |
|
23 |
EXPOSE 8080
|