mirror of
https://github.com/containers/podman.git
synced 2025-12-01 18:49:18 +08:00
Also includes a small change to make us of https://github.com/containers/buildah/pull/5039 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
8 lines
292 B
Docker
8 lines
292 B
Docker
FROM registry.fedoraproject.org/fedora
|
|
RUN dnf -y install golang make
|
|
WORKDIR /go/src/github.com/containers/luksy/
|
|
COPY / /go/src/github.com/containers/luksy/
|
|
RUN make clean all
|
|
FROM registry.fedoraproject.org/fedora-minimal
|
|
COPY --from=0 /go/src/github.com/containers/luksy/ /usr/local/bin/
|