From 7c7b1447555e55ec4399e7cde4ba76b301ddb2b7 Mon Sep 17 00:00:00 2001 From: Garrett Beatty Date: Tue, 25 Mar 2025 11:30:07 -0400 Subject: [PATCH] Fix firefix download --- al/x86_64/standard/5.0/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/al/x86_64/standard/5.0/Dockerfile b/al/x86_64/standard/5.0/Dockerfile index 8cf5116..691453d 100644 --- a/al/x86_64/standard/5.0/Dockerfile +++ b/al/x86_64/standard/5.0/Dockerfile @@ -223,8 +223,8 @@ RUN set -ex \ # Install Mozilla Firefox RUN set -ex \ - && curl -L "https://download.mozilla.org/?product=firefox-latest&os=linux64" --output /tmp/FirefoxSetup.tar.bz2 \ - && tar xjf /tmp/FirefoxSetup.tar.bz2 -C /opt/ \ + && curl -L "https://download.mozilla.org/?product=firefox-latest&os=linux64" --output /tmp/FirefoxSetup.tar.xz \ + && tar xvf /tmp/FirefoxSetup.tar.xz -C /opt/ \ && ln -s /opt/firefox/firefox /usr/local/bin/firefox \ && rm -rf /tmp/* \ && firefox --version