File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ DOCKER_BUILD_ARGS = --build-arg PKGNAME=${PKG} --build-arg GITINFO=${GIT_INFO} -
165165
166166.PHONY : operator-image
167167operator-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
171171operator-push :
@@ -174,7 +174,7 @@ operator-push:
174174# TODO: what would be a good image name?
175175.PHONY : discover-image
176176discover-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:
Original file line number Diff line number Diff line change 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
77ARG TARGETOS
88ARG TARGETARCH
Original file line number Diff line number Diff line change 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
66ARG TARGETOS
77ARG TARGETARCH
88ARG GITINFO
Original file line number Diff line number Diff line change 11module github.com/intel/network-operator
22
3- go 1.23.7
3+ go 1.24
44
55require (
66 github.com/Wifx/gonetworkmanager/v3 v3.2.0
You can’t perform that action at this time.
0 commit comments