diff options
-rw-r--r-- | qa/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/Dockerfile b/qa/Dockerfile index 09cc7df5598..8dd9b6d4a59 100644 --- a/qa/Dockerfile +++ b/qa/Dockerfile @@ -28,7 +28,7 @@ RUN wget -q https://download.docker.com/linux/static/stable/x86_64/docker-17.09. ## # Install Google Chrome version with headless support # -RUN wget -q -O chrome.deb https://s3.amazonaws.com/gitlab-google-chrome-stable/google-chrome-stable_74.0.3729.169-1_amd64.deb && dpkg -i chrome.deb && rm -f chrome.deb +RUN wget -q -O chrome.deb https://s3.amazonaws.com/gitlab-google-chrome-stable/google-chrome-stable_74.0.3729.169-1_amd64.deb && (dpkg -i chrome.deb || true) && apt-get install -f -y && rm -f chrome.deb ## # Install chromedriver to make it work with Selenium |