File tree Expand file tree Collapse file tree 2 files changed +278
-248
lines changed Expand file tree Collapse file tree 2 files changed +278
-248
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ FROM python:3.9-bullseye
3
3
USER root
4
4
5
5
# Specify versions of Firefox and geckodriver
6
- ARG firefox_ver=124 .0.2
7
- ARG geckodriver_ver=0.34 .0
6
+ ARG firefox_ver=135 .0.1
7
+ ARG geckodriver_ver=0.36 .0
8
8
9
9
# Update apt-get
10
10
RUN apt-get update
@@ -15,10 +15,10 @@ RUN apt-get install -y --no-install-recommends --no-install-suggests \
15
15
# additional 'firefox-esl' dependencies which are not in 'depends' list
16
16
libasound2 libxt6 libxtst6
17
17
18
- # Download and install Firefox
19
- RUN curl -fL -o /tmp/firefox.tar.bz2 \
20
- https://ftp.mozilla.org/pub/firefox/releases/${firefox_ver}/linux-x86_64/en-GB /firefox-${firefox_ver}.tar.bz2 \
21
- && tar -xjf /tmp/firefox.tar.bz2 -C /tmp/ \
18
+ # Download and install Firefox
19
+ RUN curl -fL -o /tmp/firefox.tar.xz \
20
+ https://ftp.mozilla.org/pub/firefox/releases/${firefox_ver}/linux-x86_64/en-CA /firefox-${firefox_ver}.tar.xz \
21
+ && tar -xJf /tmp/firefox.tar.xz -C /tmp/ \
22
22
&& mv /tmp/firefox /opt/firefox \
23
23
&& ln -s /opt/firefox/firefox /usr/local/bin/firefox
24
24
You can’t perform that action at this time.
0 commit comments