Skip to content

Commit

Permalink
Merge pull request #5006 from vvoland/v26.0-5005
Browse files Browse the repository at this point in the history
[26.0 backport] cli-bin/windows: Add .exe extension
  • Loading branch information
vvoland committed Apr 11, 2024
2 parents 57d2fbb + b1b03b3 commit 3cf84fb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Expand Up @@ -123,8 +123,14 @@ COPY --link . .
FROM scratch AS plugins
COPY --from=build-plugins /out .

FROM scratch AS bin-image
FROM scratch AS bin-image-linux
COPY --from=build /out/docker /docker
FROM scratch AS bin-image-darwin
COPY --from=build /out/docker /docker
FROM scratch AS bin-image-windows
COPY --from=build /out/docker /docker.exe

FROM bin-image-${TARGETOS} AS bin-image

FROM scratch AS binary
COPY --from=build /out .

0 comments on commit 3cf84fb

Please sign in to comment.