File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Dockerfile has specific requirement to put this ARG at the beginning:
2
2
# https://docs.docker.com/engine/reference/builder/#understand-how-arg-and-from-interact
3
- ARG BUILDER_IMAGE=golang:1.23
3
+ ARG BUILDER_IMAGE=golang:1.24
4
4
ARG BASE_IMAGE=gcr.io/distroless/static:nonroot
5
5
6
6
# # Multistage build
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ BBR_IMAGE_REPO ?= $(IMAGE_REGISTRY)/$(BBR_IMAGE_NAME)
44
44
BBR_IMAGE_TAG ?= $(BBR_IMAGE_REPO ) :$(GIT_TAG )
45
45
46
46
BASE_IMAGE ?= gcr.io/distroless/static:nonroot
47
- BUILDER_IMAGE ?= golang:1.23
47
+ BUILDER_IMAGE ?= golang:1.24
48
48
ifdef GO_VERSION
49
49
BUILDER_IMAGE = golang:$(GO_VERSION )
50
50
endif
@@ -120,7 +120,7 @@ vet: ## Run go vet against code.
120
120
go vet ./...
121
121
122
122
.PHONY : test
123
- test : manifests generate fmt vet envtest # # Run tests.
123
+ test : manifests generate fmt vet envtest image-build # # Run tests.
124
124
KUBEBUILDER_ASSETS=" $( shell $( ENVTEST) use $( ENVTEST_K8S_VERSION) --bin-dir $( LOCALBIN) -p path) " go test $$(go list ./... | grep -v /e2e ) -race -coverprofile cover.out
125
125
126
126
.PHONY : test-integration
You can’t perform that action at this time.
0 commit comments