Merge pull request #21953 from mpesari/patch-1

Fix build example diff in multi-platform.md
This commit is contained in:
CrazyMax 2025-02-03 10:01:45 +01:00 committed by GitHub
commit 3d156389d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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