From b83c5a7b9433f0451f1b97340d0b5c2a8f737ca7 Mon Sep 17 00:00:00 2001 From: Sciocatti Date: Fri, 13 Jan 2023 10:54:16 +0200 Subject: [PATCH] Switched from chrome to chromium --- Dockerfile | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index c54bc92..2bed00f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,7 @@ FROM python:3.8 -# Installing google chrome -# Adding trusting keys to apt for repositories -RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - - -# Adding Google Chrome to the repositories -RUN sh -c 'echo "deb [arch=arm64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' - -# Updating apt to see and install Google Chrome -RUN apt-get -y update - -# Magic happens -RUN apt-get install -y google-chrome-stable +# Installing google chromium +RUN apt install chromium-browser -y # Installing chromium driver # Installing Unzip