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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24 AS build
FROM golang:1.25 AS build

# Set mpi-operator version
# Defaults to v2
Expand All @@ -12,7 +12,7 @@

FROM gcr.io/distroless/base-debian12:latest

ENV CONTROLLER_VERSION=$VERSION

Check warning on line 15 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-push-docker-image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$VERSION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
COPY --from=build /go/src/github.com/kubeflow/mpi-operator/_output/cmd/bin/* /opt/
COPY third_party/library/license.txt /opt/license.txt

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kubeflow/mpi-operator

go 1.24.0
go 1.25.0

require (
github.com/golangci/golangci-lint/v2 v2.4.0
Expand Down
Loading