From d3c0e099042611cffb8dbd4d44ff88c1c1d476ab Mon Sep 17 00:00:00 2001 From: Ravi Prasad Date: Wed, 6 Aug 2025 02:03:15 -0500 Subject: [PATCH] amd64 --- 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