Skip to content

Commit f1bd3cb

Browse files
committed
Update golang Docker tag to v1.23
1 parent b0686a3 commit f1bd3cb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tutorials/deploy-hooks-run/app-config/hello-app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22 AS builder
15+
FROM golang:1.23 AS builder
1616
WORKDIR /go/src/hello
1717
COPY . .
1818
RUN CGO_ENABLED=0 go build -o /go/bin/hello

tutorials/deployment-strategies-run/app-config/demo-app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22 AS builder
15+
FROM golang:1.23 AS builder
1616
WORKDIR /go/src/demo
1717
COPY . .
1818
RUN CGO_ENABLED=0 go build -o /go/bin/demo

tutorials/e2e-run/app-config/hello-app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22 AS builder
15+
FROM golang:1.23 AS builder
1616
WORKDIR /go/src/hello
1717
COPY . .
1818
RUN CGO_ENABLED=0 go build -o /go/bin/hello

tutorials/verification-run/app-config/hello-app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22 AS builder
15+
FROM golang:1.23 AS builder
1616
WORKDIR /go/src/hello
1717
COPY . .
1818
RUN CGO_ENABLED=0 go build -o /go/bin/hello

0 commit comments

Comments
 (0)