From e1ec5dcf8d04d12eb71c4f09f9f0bb76b49daefc Mon Sep 17 00:00:00 2001 From: e551763 Date: Thu, 12 Sep 2024 10:36:09 +0200 Subject: [PATCH] chore: use https, RUN arguments sorted --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a61a928..7d8c7b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,8 +38,8 @@ RUN apt-get --no-install-recommends --yes install \ libx11-xcb1 \ libxdamage1 \ libxkbcommon0 \ - libxslt1.1 \ libxnvctrl0 \ + libxslt1.1 \ wget \ x11-utils \ xdg-utils @@ -48,8 +48,8 @@ RUN apt-get --no-install-recommends --yes install \ ARG TARGETARCH # Download Chromium (urls taken from http://snapshot.debian.org/archive/debian/20240820T082737Z/pool/main/c/chromium/) -RUN wget -P /tmp http://snapshot.debian.org/archive/debian/20240820T082737Z/pool/main/c/chromium/chromium_126.0.6478.182-1~deb12u1_${TARGETARCH}.deb && \ - wget -P /tmp http://snapshot.debian.org/archive/debian/20240825T022815Z/pool/main/c/chromium/chromium-common_126.0.6478.182-1~deb12u1_${TARGETARCH}.deb +RUN wget -P /tmp https://snapshot.debian.org/archive/debian/20240820T082737Z/pool/main/c/chromium/chromium_126.0.6478.182-1~deb12u1_${TARGETARCH}.deb && \ + wget -P /tmp https://snapshot.debian.org/archive/debian/20240825T022815Z/pool/main/c/chromium/chromium-common_126.0.6478.182-1~deb12u1_${TARGETARCH}.deb # Install the downloaded packages # DO NOT USE """|| apt-get install -f -y""" COZ THIS CAN FORCE TO UPDATE CHROMIUM TO THE LATEST VERSION