Skip to content

Commit

Permalink
Upgrade Docker to 24.0.6 (#3580)
Browse files Browse the repository at this point in the history
* Upgrade Docker in CI and Post-release Yaml Files

* Upgrade docker version outside /examples
  • Loading branch information
Kalaiselvi84 committed Jan 12, 2024
1 parent fc9e725 commit 3243604
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build/release/post_cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ steps:
args:
- bash
- -c
- "echo 'FROM gcr.io/cloud-builders/docker\nRUN apt-get install make\nENTRYPOINT\
- "echo 'FROM gcr.io/cloud-builders/docker:24.0.6\nRUN apt-get install make\nENTRYPOINT\
\ [\"/usr/bin/make\"]' > Dockerfile.build"
- name: gcr.io/cloud-builders/docker
- name: gcr.io/cloud-builders/docker:24.0.6
id: build-make-docker
args: [build, -f, Dockerfile.build, -t, make-docker, .]

Expand Down
4 changes: 2 additions & 2 deletions build/release/pre_cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ steps:
args:
- bash
- -c
- "echo 'FROM gcr.io/cloud-builders/docker\nRUN apt-get install make\nENTRYPOINT\
- "echo 'FROM gcr.io/cloud-builders/docker:24.0.6\nRUN apt-get install make\nENTRYPOINT\
\ [\"/usr/bin/make\"]' > Dockerfile.build"
- name: gcr.io/cloud-builders/docker
- name: gcr.io/cloud-builders/docker:24.0.6
id: build-make-docker
args: [build, -f, Dockerfile.build, -t, make-docker, .]

Expand Down
2 changes: 1 addition & 1 deletion ci/e2e-test-cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ steps:
#
# build the e2e test runner
#
- name: gcr.io/cloud-builders/docker
- name: gcr.io/cloud-builders/docker:24.0.6
args: [build, -f, Dockerfile, -t, e2e-runner, .]
dir: build/e2e-image
id: build-e2e
Expand Down
4 changes: 2 additions & 2 deletions site/cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ steps:
args:
- bash
- -c
- "echo 'FROM gcr.io/cloud-builders/docker\nRUN apt-get install make\nENTRYPOINT\
- "echo 'FROM gcr.io/cloud-builders/docker:24.0.6\nRUN apt-get install make\nENTRYPOINT\
\ [\"/usr/bin/make\"]' > Dockerfile.build"
- name: gcr.io/cloud-builders/docker
- name: gcr.io/cloud-builders/docker:24.0.6
args: [build, -f, Dockerfile.build, -t, make-docker, .] # we need docker and make to run everything.
- name: make-docker
dir: build
Expand Down

0 comments on commit 3243604

Please sign in to comment.