From 4ab55ef92788dc2661f0f12be4eac857b1b281c2 Mon Sep 17 00:00:00 2001 From: Richard Date: Sun, 3 Nov 2019 18:33:41 +0000 Subject: [PATCH] Change Dockerfile to install google-chrome-stable - change google chrome to current version instead of an unstable newer version (+2 over current) - currently - stable chrome is 78 - unstable chrome is 80 - depending on where we are in the chrome release cycle the drivers may not work. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a5539a755..0d7b9d967 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN set -ex; \ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ && apt-get update \ - && apt-get install -y google-chrome-unstable --no-install-recommends \ + && apt-get install -y google-chrome-stable --no-install-recommends \ && rm -rf /var/lib/apt/lists/* WORKDIR /planner