We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b5f32f + 16f241d commit 6fece69Copy full SHA for 6fece69
Dockerfile
@@ -13,8 +13,16 @@ RUN apt update && \
13
libxfixes3 \
14
libxrandr2 \
15
libgbm1 \
16
- libasound2 \
17
- && rm -rf /var/lib/apt/lists/*
+ libasound2
+
18
+ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
19
20
+RUN apt-get update && apt install gnupg wget -y && \
21
+ wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && \
22
+ sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && \
23
+ apt-get update && \
24
+ apt install google-chrome-stable -y --no-install-recommends && \
25
+ rm -rf /var/lib/apt/lists/*
26
27
USER 1000
28
0 commit comments