From ac9226ddc59d7efaf9e5bfa1c3cfcae771e866eb Mon Sep 17 00:00:00 2001 From: Andrei Mihu Date: Sun, 12 Nov 2023 14:29:31 +0000 Subject: [PATCH] Fix incorrect GOARCH flag in Dockerfiles for arm64. --- build/Dockerfile.arm64 | 2 +- build/Dockerfile.dsym.arm64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile.arm64 b/build/Dockerfile.arm64 index a74425a1a..4bc4e9e50 100644 --- a/build/Dockerfile.arm64 +++ b/build/Dockerfile.arm64 @@ -21,7 +21,7 @@ ARG commit ARG version ENV GOOS linux -ENV GOARCH amd64 +ENV GOARCH arm64 ENV CGO_ENABLED 1 RUN apt-get update && \ diff --git a/build/Dockerfile.dsym.arm64 b/build/Dockerfile.dsym.arm64 index 2bacca205..1e03eff39 100644 --- a/build/Dockerfile.dsym.arm64 +++ b/build/Dockerfile.dsym.arm64 @@ -21,7 +21,7 @@ ARG commit ARG version ENV GOOS linux -ENV GOARCH amd64 +ENV GOARCH arm64 ENV CGO_ENABLED 1 RUN apt-get update && \ -- GitLab