Skip to content

Commit 8fdf9ad

Browse files
pfltkatila
authored andcommitted
Update golang image to 1.24, force image pull
Signed-off-by: Patrik Flykt <[email protected]>
1 parent 7f58332 commit 8fdf9ad

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ DOCKER_BUILD_ARGS = --build-arg PKGNAME=${PKG} --build-arg GITINFO=${GIT_INFO} -
165165

166166
.PHONY: operator-image
167167
operator-image:
168-
$(CONTAINER_TOOL) build ${DOCKER_BUILD_ARGS} -f build/Dockerfile.operator -t ${IMG} .
168+
$(CONTAINER_TOOL) build --pull ${DOCKER_BUILD_ARGS} -f build/Dockerfile.operator -t ${IMG} .
169169

170170
.PHONY: operator-push
171171
operator-push:
@@ -174,7 +174,7 @@ operator-push:
174174
# TODO: what would be a good image name?
175175
.PHONY: discover-image
176176
discover-image:
177-
$(CONTAINER_TOOL) build ${DOCKER_BUILD_ARGS} -f build/Dockerfile.linkdiscovery -t intel/intel-network-linkdiscovery:${TAG} .
177+
$(CONTAINER_TOOL) build --pull ${DOCKER_BUILD_ARGS} -f build/Dockerfile.linkdiscovery -t intel/intel-network-linkdiscovery:${TAG} .
178178

179179
# PLATFORMS defines the target platforms for the manager image be built to provide support to multiple
180180
# architectures. (i.e. make docker-buildx IMG=myregistry/mypoperator:0.0.1). To use this option you need to:

build/Dockerfile.linkdiscovery

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: MIT
33

44
# Build the discover binary
5-
FROM golang:1.23 AS builder
5+
FROM golang:1.24 AS builder
66

77
ARG TARGETOS
88
ARG TARGETARCH

build/Dockerfile.operator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: MIT
33

44
# Build the manager binary
5-
FROM golang:1.23 AS builder
5+
FROM golang:1.24 AS builder
66
ARG TARGETOS
77
ARG TARGETARCH
88
ARG GITINFO

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/intel/network-operator
22

3-
go 1.23.7
3+
go 1.24
44

55
require (
66
github.com/Wifx/gonetworkmanager/v3 v3.2.0

0 commit comments

Comments
 (0)