From 3f31d6687df2166ab2ea589f526486296ea83d47 Mon Sep 17 00:00:00 2001 From: Carmelo Messina Date: Mon, 24 Jul 2023 11:09:55 +0200 Subject: [PATCH] restore download install-build-deps.py --- tools/images/build-deps/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/images/build-deps/Dockerfile b/tools/images/build-deps/Dockerfile index 9b6a7f50..69430647 100644 --- a/tools/images/build-deps/Dockerfile +++ b/tools/images/build-deps/Dockerfile @@ -33,8 +33,10 @@ USER ${user} WORKDIR /home/${user} RUN wget https://raw.githubusercontent.com/chromium/chromium/$VERSION/build/install-build-deps.sh && \ + wget https://raw.githubusercontent.com/chromium/chromium/$VERSION/build/install-build-deps.py && \ sed -i 's/snapcraft/wget/' install-build-deps.sh && \ chmod +x ./install-build-deps.sh && \ + chmod +x ./install-build-deps.py && \ sudo ./install-build-deps.sh --no-prompt --lib32 --no-chromeos-fonts && \ sudo ./install-build-deps.sh --android --no-prompt --no-chromeos-fonts && \ sudo mkdir -p /github/home/.vscode-server && \