Commit 11efa79 1 parent 1732a09 commit 11efa79 Copy full SHA for 11efa79
File tree 1 file changed +11
-9
lines changed
.cloudbuild/library_generation
1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -31,23 +31,25 @@ steps:
31
31
id : library-generation-build
32
32
waitFor : ["-"]
33
33
34
- - name : python:3.13.1
34
+ - name : ubuntu:25.04
35
35
entrypoint : bash
36
36
args :
37
37
- " -c"
38
38
- |
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
42
42
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
46
45
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 \
48
47
$(. /etc/os-release && echo "${_VERSION_CODENAME}") stable" | \
49
48
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
51
53
# Install python dependencies
52
54
pip install --upgrade pip
53
55
pip install --require-hashes -r hermetic_build/common/requirements.txt
You can’t perform that action at this time.
0 commit comments