Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion golang-sample/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Use the offical golang image to create a binary.
# This is based on Debian and sets the GOPATH to /go.
# https://hub.docker.com/_/golang
FROM golang:1.24-trixie as builder
FROM golang:1.25-trixie as builder

# Create and change to the app directory.
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion golang-sample/cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# [START cloudbuild_go_test_yaml]
steps:
# Run tests and save to file
- name: golang:1.24-trixie
- name: golang:1.25-trixie
entrypoint: /bin/bash
args:
- -c
Expand Down
2 changes: 1 addition & 1 deletion run-example-builddeploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Use the official golang image to create a binary.
# This is based on Debian and sets the GOPATH to /go.
# https://hub.docker.com/_/golang
FROM golang:1.24-trixie as builder
FROM golang:1.25-trixie as builder

# Create and change to the app directory.
WORKDIR /app
Expand Down