Files
external-snapshotter/cmd/csi-snapshotter/Dockerfile
2020-10-21 13:08:59 +00:00

8 lines
226 B
Docker

FROM gcr.io/distroless/static:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Snapshotter Sidecar"
ARG binary=./bin/csi-snapshotter
COPY ${binary} csi-snapshotter
ENTRYPOINT ["/csi-snapshotter"]