Skip to content

Commit 3d15638

Browse files
authored
Merge pull request #21953 from mpesari/patch-1
Fix build example diff in multi-platform.md
2 parents 01a0f97 + ca9eb97 commit 3d15638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/manuals/build/building/multi-platform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ Steps:
468468
WORKDIR /app
469469
ADD https://github.com/dvdksn/buildme.git#eb6279e0ad8a10003718656c6867539bd9426ad8 .
470470
-RUN go build -o server .
471-
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o server .
471+
+RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o server .
472472

473473
FROM alpine
474474
COPY --from=build /app/server /server

0 commit comments

Comments
 (0)