Update firefox tar format (#939)
Firefox started distributing `.tar.xz` instead of `.tar.bz2`
This commit is contained in:
parent
efd6bc8ccb
commit
3715498fc1
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue