-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade Docker base image Ubuntu 22 -> Ubuntu 24
- Loading branch information
1 parent
739ebea
commit 5227639
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:jammy-20240427 | ||
FROM ubuntu:noble-20240429 | ||
LABEL authors="Selenium <[email protected]>" | ||
|
||
# Arguments to define the version of dependencies to download | ||
|
@@ -37,9 +37,9 @@ ENV DEBIAN_FRONTEND=noninteractive \ | |
# Includes minimal runtime used for executing non GUI Java programs | ||
#======================== | ||
RUN if [ "${TARGETARCH}" = "amd64" ]; then \ | ||
echo "deb http://archive.ubuntu.com/ubuntu jammy main universe\n" > /etc/apt/sources.list \ | ||
&& echo "deb http://archive.ubuntu.com/ubuntu jammy-updates main universe\n" >> /etc/apt/sources.list \ | ||
&& echo "deb http://security.ubuntu.com/ubuntu jammy-security main universe\n" >> /etc/apt/sources.list ; \ | ||
echo "deb http://archive.ubuntu.com/ubuntu noble main universe\n" > /etc/apt/sources.list \ | ||
&& echo "deb http://archive.ubuntu.com/ubuntu noble-updates main universe\n" >> /etc/apt/sources.list \ | ||
&& echo "deb http://security.ubuntu.com/ubuntu noble-security main universe\n" >> /etc/apt/sources.list ; \ | ||
fi \ | ||
&& apt-get -qqy update \ | ||
&& apt-get upgrade -yq \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters