7 lines
197 B
Docker
7 lines
197 B
Docker
FROM gcr.io/distroless/static:latest
|
|
LABEL maintainers="Kubernetes Authors"
|
|
LABEL description="CSI External Snapshotter"
|
|
|
|
COPY ./bin/csi-snapshotter csi-snapshotter
|
|
ENTRYPOINT ["/csi-snapshotter"]
|