diff options
Diffstat (limited to 'test/testvol/Containerfile')
-rw-r--r-- | test/testvol/Containerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/testvol/Containerfile b/test/testvol/Containerfile new file mode 100644 index 000000000..6ff45064b --- /dev/null +++ b/test/testvol/Containerfile @@ -0,0 +1,10 @@ +FROM golang:1.15-alpine AS build-img +COPY ./test/testvol/ /go/src/github.com/containers/podman/cmd/testvol/ +COPY ./vendor /go/src/github.com/containers/podman/vendor/ +WORKDIR /go/src/github.com/containers/podman +RUN go build -o /testvol ./cmd/testvol + +FROM alpine +COPY --from=build-img /testvol /usr/local/bin +WORKDIR / +ENTRYPOINT ["/usr/local/bin/testvol"] |