Files
2020-10-21 13:08:59 +00:00

8 lines
225 B
Docker

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