Skip to content

Commit a0ff5c5

Browse files
authored
.ci: update Dockerfile to reference go v1.24 (#15292)
1 parent 5714840 commit a0ff5c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.ci/containers/build-environment/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23-bullseye AS builder
1+
FROM golang:1.24-bullseye AS builder
22

33
# Set working directory
44
WORKDIR /app

.ci/containers/go-plus/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Download go module cache for builds
2-
FROM golang:1.23-bullseye AS builder
2+
FROM golang:1.24-bullseye AS builder
33
ENV GOCACHE=/go/cache
44

55
RUN apt-get update && apt-get install -y unzip
@@ -12,7 +12,7 @@ WORKDIR /app1/magic-modules-main/.ci/magician
1212
RUN go build -o /dev/null .
1313

1414
# Stage 2: Creating the final image
15-
FROM golang:1.23-bullseye
15+
FROM golang:1.24-bullseye
1616
SHELL ["/bin/bash", "-c"]
1717
ENV GOCACHE=/go/cache
1818

0 commit comments

Comments
 (0)