From c8d66040cb18ffd1ca4055f16603090596f773aa Mon Sep 17 00:00:00 2001 From: Philipp Riederer Date: Thu, 2 May 2024 20:33:33 +0200 Subject: [PATCH] fix arm build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 73d8c3fc..4e116660 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN go mod download COPY . . # Build -RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o wave -ldflags="-X main.VERSION=${VERSION}" ./cmd/manager +RUN CGO_ENABLED=0 GOOS=linux go build -a -o wave -ldflags="-X main.VERSION=${VERSION}" ./cmd/manager # Copy the controller-manager into a thin image FROM alpine:3.11