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 cmd/controller-manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.23 as builder
FROM golang:1.25 as builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
2 changes: 1 addition & 1 deletion cmd/gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.23 as builder
FROM golang:1.25 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
6 changes: 3 additions & 3 deletions cmd/nclet/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.23 as builder
FROM golang:1.25 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand All @@ -20,7 +20,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build CGO_ENABLED=0 go build -o nc


# Build the access-helper binary
FROM golang:1.23 as access-helper_builder
FROM golang:1.25 as access-helper_builder

WORKDIR /workspace
COPY go.mod go.mod
Expand All @@ -36,7 +36,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build CGO_ENABLED=0 \
go build -o access-helper ./cmd/access-helper

# Build the containerlab binary
FROM golang:1.23 as containerlab_builder
FROM golang:1.25 as containerlab_builder

WORKDIR /workspace
COPY containerlab/go.mod go.mod
Expand Down
Loading