Skip to content

Commit 0d4815c

Browse files
authored
Docker: Update dependencies version (#2885)
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 25f57f1 commit 0d4815c

File tree

5 files changed

+21
-16
lines changed

5 files changed

+21
-16
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
if: github.event.inputs.skip-build-push-image != 'true'
136136
uses: nick-invision/retry@master
137137
with:
138-
timeout_minutes: 160
138+
timeout_minutes: 180
139139
max_attempts: 3
140140
retry_wait_seconds: 60
141141
command: PLATFORMS="${PLATFORMS}" VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make build

.github/workflows/nightly.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,18 @@ jobs:
2424
- build-test
2525
if: (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && !failure() && !cancelled()
2626
name: Deploy and Release Nightly
27-
runs-on: blacksmith-8vcpu-ubuntu-2204
27+
runs-on: ubuntu-22.04
2828
permissions: write-all
2929
steps:
3030
- name: Free Disk Space (Ubuntu)
3131
uses: jlumbroso/free-disk-space@main
32+
with:
33+
android: true
34+
dotnet: true
35+
haskell: true
36+
large-packages: true
37+
docker-images: true
38+
swap-storage: true
3239
- name: Checkout code
3340
uses: actions/checkout@main
3441
with:
@@ -78,7 +85,7 @@ jobs:
7885
- name: Build images
7986
uses: nick-invision/retry@master
8087
with:
81-
timeout_minutes: 160
88+
timeout_minutes: 180
8289
max_attempts: 3
8390
retry_wait_seconds: 60
8491
command: PLATFORMS="${PLATFORMS}" VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make build

Base/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ ARG VERSION
88
ARG RELEASE=selenium-${VERSION}
99
ARG MVN_SELENIUM_VERSION
1010
# Default value should be aligned with upstream Selenium (https://github.com/SeleniumHQ/selenium/blob/trunk/MODULE.bazel)
11-
ARG OPENTELEMETRY_VERSION=1.48.0
12-
ARG GRPC_VERSION=1.71.0
13-
ARG NETTY_VERSION=4.2.0.Final
14-
ARG CS_VERSION=2.1.18
11+
ARG OPENTELEMETRY_VERSION=1.51.0
12+
ARG GRPC_VERSION=1.73.0
13+
ARG NETTY_VERSION=4.1.122.Final
14+
ARG CS_VERSION=2.1.24
1515
ARG POSTGRESQL_VERSION=42.7.7
16-
ARG ENVSUBST_VERSION=1.4.4
16+
ARG ENVSUBST_VERSION=1.4.5
1717

1818
#Arguments to define the user running Selenium
1919
ARG SEL_USER=seluser
@@ -46,10 +46,10 @@ ENV DEBIAN_FRONTEND=noninteractive \
4646
# Miscellaneous packages
4747
# Includes minimal runtime used for executing non GUI Java programs
4848
#========================
49-
RUN echo "deb [arch=amd64] http://archive.ubuntu.com/ubuntu noble main restricted universe multiverse\n" > /etc/apt/sources.list \
50-
&& echo "deb-src [arch=amd64] http://archive.ubuntu.com/ubuntu noble main restricted universe multiverse\n" >> /etc/apt/sources.list \
51-
&& echo "deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports noble main restricted universe multiverse" >> /etc/apt/sources.list \
52-
&& echo "deb-src [arch=arm64] http://ports.ubuntu.com/ubuntu-ports noble main restricted universe multiverse" >> /etc/apt/sources.list
49+
#RUN echo "deb [arch=amd64] http://archive.ubuntu.com/ubuntu noble main restricted universe multiverse\n" > /etc/apt/sources.list \
50+
# && echo "deb-src [arch=amd64] http://archive.ubuntu.com/ubuntu noble main restricted universe multiverse\n" >> /etc/apt/sources.list \
51+
# && echo "deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports noble main restricted universe multiverse" >> /etc/apt/sources.list \
52+
# && echo "deb-src [arch=arm64] http://ports.ubuntu.com/ubuntu-ports noble main restricted universe multiverse" >> /etc/apt/sources.list
5353

5454
RUN apt-get -qqy update \
5555
&& apt-get upgrade -yq \

NodeChrome/install-chrome.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ echo "Installing Google Chrome: ${CHROME_VERSION}"
1818

1919
# Add Google Chrome repository
2020
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor | tee /etc/apt/trusted.gpg.d/google.gpg >/dev/null
21-
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >>/etc/apt/sources.list.d/google-chrome.list
21+
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >/etc/apt/sources.list.d/google-chrome.list
2222

2323
# Update package list
2424
apt-get update -qqy
@@ -38,7 +38,6 @@ else
3838
fi
3939

4040
# Cleanup
41-
rm /etc/apt/sources.list.d/google-chrome.list
4241
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
4342

4443
echo "Google Chrome installation completed"

NodeEdge/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ USER root
1515
#============================================
1616
ARG EDGE_VERSION="microsoft-edge-stable"
1717
RUN wget -q -O - https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | tee /etc/apt/trusted.gpg.d/microsoft.gpg >/dev/null \
18-
&& echo "deb https://packages.microsoft.com/repos/edge stable main" >> /etc/apt/sources.list.d/microsoft-edge.list \
18+
&& echo "deb https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge.list \
1919
&& apt-get update -qqy \
2020
&& if echo "${EDGE_VERSION}" | grep -qE "microsoft-edge-stable[_|=][0-9]*"; \
2121
then \
@@ -26,7 +26,6 @@ RUN wget -q -O - https://packages.microsoft.com/keys/microsoft.asc | gpg --dearm
2626
else \
2727
apt-get -qqy --no-install-recommends install ${EDGE_VERSION} ; \
2828
fi \
29-
&& rm /etc/apt/sources.list.d/microsoft-edge.list \
3029
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
3130

3231
#=================================

0 commit comments

Comments
 (0)