Skip to content

Commit

Permalink
[FIX] Add Google keys
Browse files Browse the repository at this point in the history
  • Loading branch information
SirTakobi committed Dec 16, 2022
1 parent e934242 commit c9fbd53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ RUN curl -sSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -

# Install Google Chrome for browser tests
ARG chrome_version=90.0.4430.93-1
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 - \
&& 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 \
&& apt-get -y install --no-install-recommends /tmp/chrome.deb \
&& rm /tmp/chrome.deb

Expand Down

0 comments on commit c9fbd53

Please sign in to comment.