Skip to content

Commit 3715498

Browse files
Update firefox tar format (#939)
Firefox started distributing `.tar.xz` instead of `.tar.bz2`
1 parent efd6bc8 commit 3715498

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

image/discourse_test/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ ADD install-chrome /tmp/install-chrome
2222
RUN /tmp/install-chrome &&\
2323
apt update &&\
2424
apt install -y libgconf-2-4 libxss1 firefox-esr &&\
25-
cd /tmp && wget -q "https://download.mozilla.org/?product=firefox-latest-ssl&os=linux64&lang=en-US" -O firefox.tar.bz2 &&\
26-
tar xjvf firefox.tar.bz2 && mv /tmp/firefox /opt/firefox-evergreen &&\
25+
cd /tmp && wget -q "https://download.mozilla.org/?product=firefox-latest-ssl&os=linux64&lang=en-US" -O firefox.tar.xz &&\
26+
tar xJvf firefox.tar.xz && mv /tmp/firefox /opt/firefox-evergreen &&\
2727
apt clean &&\
28-
rm /tmp/firefox.tar.bz2
28+
rm /tmp/firefox.tar.xz
2929

3030
FROM with_browsers AS release
3131

0 commit comments

Comments
 (0)