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.
1 parent e934242 commit c9fbd53Copy full SHA for c9fbd53
Dockerfile
@@ -39,7 +39,8 @@ RUN curl -sSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
39
40
# Install Google Chrome for browser tests
41
ARG chrome_version=90.0.4430.93-1
42
-RUN curl -sSL https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${chrome_version}_amd64.deb -o /tmp/chrome.deb \
+RUN curl -sSL https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - \
43
+ && curl -sSL https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${chrome_version}_amd64.deb -o /tmp/chrome.deb \
44
&& apt-get -y install --no-install-recommends /tmp/chrome.deb \
45
&& rm /tmp/chrome.deb
46
0 commit comments