From d975064f57771d80ed96f967c29999cfa9ea3e15 Mon Sep 17 00:00:00 2001 From: Ravi Prasad Date: Sun, 1 Feb 2026 21:15:41 -0600 Subject: [PATCH] GOARCH restore --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0700431..9f0af2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ FROM golang:1.24-bullseye AS builder ENV CGO_ENABLED=1 ENV GOOS=linux # Changed from Apple Silicon arm64 config. -# ENV GOARCH=amd64 -ENV GOARCH=arm64 +ENV GOARCH=amd64 +# ENV GOARCH=arm64 WORKDIR /app