Skip to content
Merged
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
8 changes: 6 additions & 2 deletions docker/eno-controller/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM mcr.microsoft.com/devcontainers/go:1.24 AS builder
# Set GOTOOLCHAIN to ensure the specific version is used during build for fix CVE-2025-68121
ENV GOTOOLCHAIN=go1.24.13

ENV GOTOOLCHAIN=auto

# Disable workspace mode so go build uses the toolchain from go.mod
ENV GOWORK=off

WORKDIR /app

ADD go.mod .
Expand Down
8 changes: 6 additions & 2 deletions docker/eno-reconciler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM mcr.microsoft.com/devcontainers/go:1.24 AS builder
# Set GOTOOLCHAIN to ensure the specific version is used during build for fix CVE-2025-68121
ENV GOTOOLCHAIN=go1.24.13

ENV GOTOOLCHAIN=auto

# Disable workspace mode so go build uses the toolchain from go.mod
ENV GOWORK=off

WORKDIR /app

ADD go.mod .
Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
go 1.24.0

toolchain go1.24.3
toolchain go1.24.13

use (
.
Expand Down