Update firefox tar format ()

Firefox started distributing `.tar.xz` instead of `.tar.bz2`
This commit is contained in:
David Taylor 2025-02-11 12:11:29 +00:00 committed by GitHub
parent efd6bc8ccb
commit 3715498fc1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,10 +22,10 @@ ADD install-chrome /tmp/install-chrome
RUN /tmp/install-chrome &&\
apt update &&\
apt install -y libgconf-2-4 libxss1 firefox-esr &&\
cd /tmp && wget -q "https://download.mozilla.org/?product=firefox-latest-ssl&os=linux64&lang=en-US" -O firefox.tar.bz2 &&\
tar xjvf firefox.tar.bz2 && mv /tmp/firefox /opt/firefox-evergreen &&\
cd /tmp && wget -q "https://download.mozilla.org/?product=firefox-latest-ssl&os=linux64&lang=en-US" -O firefox.tar.xz &&\
tar xJvf firefox.tar.xz && mv /tmp/firefox /opt/firefox-evergreen &&\
apt clean &&\
rm /tmp/firefox.tar.bz2
rm /tmp/firefox.tar.xz
FROM with_browsers AS release