File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,12 @@ LABEL org.opencontainers.image.source="https://github.com/${AUTHORS}/docker-sele
77ARG VERSION
88ARG RELEASE=selenium-${VERSION}
99# Default value should be aligned with upstream Selenium (https://github.com/SeleniumHQ/selenium/blob/trunk/MODULE.bazel)
10- ARG OPENTELEMETRY_VERSION=1.51 .0
11- ARG GRPC_VERSION=1.73 .0
12- ARG NETTY_VERSION=4.1.122 .Final
10+ ARG OPENTELEMETRY_VERSION=1.52 .0
11+ ARG GRPC_VERSION=1.74 .0
12+ ARG NETTY_VERSION=4.1.123 .Final
1313ARG CS_VERSION=2.1.24
1414ARG ENVSUBST_VERSION=1.4.5
15+ ARG CURL_VERSION=8.15.0
1516
1617# Arguments to define the user running Selenium
1718ARG SEL_USER=seluser
@@ -76,12 +77,12 @@ RUN apt-get -qqy update \
7677 && apt-get upgrade -yq \
7778 && apt-get -qqy --no-install-recommends install \
7879 python3 python3-pip python3-venv \
79- && python3 -m pip install --upgrade setuptools virtualenv --break-system-packages \
80+ && python3 -m pip install --upgrade setuptools virtualenv requests --break-system-packages \
8081 && rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
8182 && echo "source $VENV_PATH/bin/activate" >> /etc/bash.bashrc
8283
8384RUN ARCH=$(if [ "$(dpkg --print-architecture)" = "arm64" ]; then echo "aarch64" ; else echo "$(dpkg --print-architecture)" ; fi) \
84- && wget -q https://github.com/moparisthebest /static-curl/releases/download/v8.11.0 /curl-$ARCH -O /usr/bin/curl \
85+ && wget -q https://github.com/NDViet /static-curl/releases/download/${CURL_VERSION} /curl-$ARCH -O /usr/bin/curl \
8586 && chmod +x /usr/bin/curl \
8687 && curl --version
8788
You can’t perform that action at this time.
0 commit comments