Skip to content

Commit 6ffcced

Browse files
committed
Docker: Update dependencies version in Base
1 parent 2d4be06 commit 6ffcced

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Base/Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ LABEL org.opencontainers.image.source="https://github.com/${AUTHORS}/docker-sele
77
ARG VERSION
88
ARG 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
1313
ARG CS_VERSION=2.1.24
1414
ARG ENVSUBST_VERSION=1.4.5
15+
ARG CURL_VERSION=8.15.0
1516

1617
#Arguments to define the user running Selenium
1718
ARG 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

8384
RUN 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

0 commit comments

Comments
 (0)