From 467ba37fab78cde26511bbe3a3226938611a0d05 Mon Sep 17 00:00:00 2001 From: nronzel <86695181+nronzel@users.noreply.github.com> Date: Mon, 26 Feb 2024 21:30:33 -0500 Subject: [PATCH] chore: fixed platform --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b407b85..57ae6ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Create a stage for building the application. ARG GO_VERSION=1.22 -FROM --platform=$BUILDPLATFORM golang:${GO_VERSION} AS build +FROM --platform=linux/amd64 golang:${GO_VERSION} AS build WORKDIR /src # Download dependencies as a separate step to take advantage of Docker's caching.