cloud build: use files from csi-release-tools

This commit is contained in:
Patrick Ohly
2020-06-02 20:25:15 +02:00
parent c64080867c
commit 8e680b17bc
4 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
FROM gcr.io/distroless/static:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="Snapshot Controller"
ARG binary=./bin/snapshot-controller
COPY ./bin/snapshot-controller snapshot-controller
COPY ${binary} snapshot-controller
ENTRYPOINT ["/snapshot-controller"]