mirror of https://github.com/containers/podman.git
11 lines
321 B
Docker
11 lines
321 B
Docker
FROM registry.access.redhat.com/ubi8/go-toolset:latest AS builder
|
|
WORKDIR /opt/app-root/src
|
|
COPY . .
|
|
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-linux_amd64"]
|