fix (docker): Fix install of Chrome in frontend Dockerimage (#1889)

* fix (docker): Fix install of Chrome in frontend Dockerimage

Retry installing Chrome after dependencies have been installed

* fix (docker): Install Chrome with apt-get

Install Chrome and dependencies at the same time, using apt-get
This commit is contained in:
Fredrik Sannholm 2020-09-22 22:02:37 +03:00 committed by GitHub
parent 27baa10004
commit d50b9c01b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ FROM openjdk:8 as builder
RUN apt-get update && apt-get install -y wget \
&& wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
&& dpkg -i google-chrome-stable_current_amd64.deb; apt-get -fy install
&& apt-get -y install ./google-chrome-stable_current_amd64.deb
ENV CI=true