Add Makefile and Gopkg files

This PR adds Makefile, Dockerfile, Gopkg file, and other scripts.
This commit is contained in:
xing-yang
2018-07-12 10:45:18 -07:00
parent 1c42a9f6a6
commit eca951f614
7 changed files with 692 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM alpine
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Snapshotter"
COPY ./bin/csi-snapshotter csi-snapshotter
ENTRYPOINT ["/csi-snapshotter"]