forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linux: Add -linux suffix to podman-remote-static binaries
This is more consistent with the name of the other released files, and makes identification of the binaries easier among the Windows/macOS ones. Related: containers#16612 Signed-off-by: Christophe Fergeau <[email protected]>
- Loading branch information
Showing
4 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM registry.access.redhat.com/ubi8/go-toolset:latest AS builder | ||
WORKDIR /opt/app-root/src | ||
COPY . . | ||
RUN make podman-remote-static_amd64 | ||
RUN make podman-remote-static-linux_amd64 | ||
RUN GOOS=windows make podman-remote | ||
RUN GOOS=darwin make podman-remote | ||
|
||
FROM scratch | ||
COPY --from=builder /opt/app-root/src/bin . | ||
ENTRYPOINT ["/podman-remote-static_amd64"] | ||
ENTRYPOINT ["/podman-remote-static-linux_amd64"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters