Skip to content

Commit 11efa79

Browse files
committed
change base image
1 parent 1732a09 commit 11efa79

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.cloudbuild/library_generation/cloudbuild-library-generation-integration-test.yaml

+11-9
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,25 @@ steps:
3131
id: library-generation-build
3232
waitFor: ["-"]
3333

34-
- name: python:3.13.1
34+
- name: ubuntu:25.04
3535
entrypoint: bash
3636
args:
3737
- "-c"
3838
- |
39-
apt-get update
40-
apt-get -y install maven sudo ca-certificates curl
41-
# Install docker, see https://docs.docker.com/engine/install/debian/#install-using-the-repository
39+
# Install docker, see https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository
40+
sudo apt-get update
41+
sudo apt-get install ca-certificates curl
4242
sudo install -m 0755 -d /etc/apt/keyrings
43-
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
44-
chmod a+r /etc/apt/keyrings/docker.asc
45-
# Add the repository to Apt sources:
43+
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
44+
sudo chmod a+r /etc/apt/keyrings/docker.asc
4645
echo \
47-
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
46+
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
4847
$(. /etc/os-release && echo "${_VERSION_CODENAME}") stable" | \
4948
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
50-
apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
49+
sudo apt-get update
50+
sudo apt-get install \
51+
docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin \
52+
maven python
5153
# Install python dependencies
5254
pip install --upgrade pip
5355
pip install --require-hashes -r hermetic_build/common/requirements.txt

0 commit comments

Comments
 (0)