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