mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-02 03:39:03 +00:00
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:
parent
27baa10004
commit
d50b9c01b4
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user