From 0333b370ce4a1e155c8d6fb88c11a312135ba51a Mon Sep 17 00:00:00 2001 From: althafvly Date: Wed, 19 Jul 2023 11:04:51 +0530 Subject: [PATCH] Browser: Move to python setup script --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 24992f81..b0652088 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,10 +30,8 @@ RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1 RUN update-alternatives --set python3 /usr/bin/python3.8 # Install chromium build dependencies -RUN curl -s https://raw.githubusercontent.com/chromium/chromium/main/build/install-build-deps.sh \ - | perl -pe 's/apt-get install \$\{do_quietly-}/DEBIAN_FRONTEND=noninteractive apt-get install -y/' \ - | bash -e -s - \ - --no-syms --lib32 --no-arm --no-chromeos-fonts --no-nacl --no-prompt +RUN curl -s https://raw.githubusercontent.com/chromium/chromium/main/build/install-build-deps.py \ + | python3 - --no-syms --lib32 --no-arm --no-chromeos-fonts --no-nacl --no-prompt RUN apt-get -f install -- GitLab