From ca9eb9721a8997835708fb0ebd33f36f961cef00 Mon Sep 17 00:00:00 2001 From: Mikko Pesari Date: Mon, 3 Feb 2025 10:46:43 +0200 Subject: [PATCH] Fix build example diff in multi-platform.md --- content/manuals/build/building/multi-platform.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/build/building/multi-platform.md b/content/manuals/build/building/multi-platform.md index 175cddb470..e60db90b38 100644 --- a/content/manuals/build/building/multi-platform.md +++ b/content/manuals/build/building/multi-platform.md @@ -468,7 +468,7 @@ Steps: WORKDIR /app ADD https://github.com/dvdksn/buildme.git#eb6279e0ad8a10003718656c6867539bd9426ad8 . -RUN go build -o server . - RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o server . + +RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o server . FROM alpine COPY --from=build /app/server /server