8 lines
226 B
Docker
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"]
|