Skip to content

Commit 505ad59

Browse files
committed
Fix warnings
Signed-off-by: Fredrik Lönnegren <[email protected]>
1 parent eebc1d4 commit 505ad59

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=$BUILDPLATFORM golang:1.21 as builder
2+
FROM --platform=$BUILDPLATFORM golang:1.24 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

Dockerfile.device-plugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM registry.opensuse.org/opensuse/tumbleweed as builder
2+
FROM registry.opensuse.org/opensuse/tumbleweed:latest AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ run: manifests generate fmt vet ## Run a controller from your host.
9797

9898
.PHONY: docker-build
9999
docker-build: ## Build docker image with the manager.
100-
$(CONTAINER_TOOL) build -t ${IMG} .
101-
$(CONTAINER_TOOL) build -t ${DP_IMG} -f Dockerfile.device-plugin .
102-
$(CONTAINER_TOOL) build -t ${RTLSDR_IMAGE} -f Dockerfile.rtl-sdr .
100+
$(CONTAINER_TOOL) build --load -t ${IMG} .
101+
$(CONTAINER_TOOL) build --load -t ${DP_IMG} -f Dockerfile.device-plugin .
102+
$(CONTAINER_TOOL) build --load -t ${RTLSDR_IMAGE} -f Dockerfile.rtl-sdr .
103103

104104
.PHONY: docker-push
105105
docker-push: ## Push docker image with the manager.

0 commit comments

Comments
 (0)