Skip to content

Commit 6912305

Browse files
authored
Merge pull request #5 from xing-yang/makefile
Add Makefile, Gopkg file, etc
2 parents 1c42a9f + 28cbb33 commit 6912305

File tree

7 files changed

+694
-0
lines changed

7 files changed

+694
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Compiled binaries and deployment files
2+
/bin/
3+
/deploy/docker/csi-snapshotter
4+
15
# Binaries for programs and plugins
26
*.exe
37
*.exe~

Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM alpine
2+
LABEL maintainers="Kubernetes Authors"
3+
LABEL description="CSI External Snapshotter"
4+
5+
COPY ./bin/csi-snapshotter csi-snapshotter
6+
ENTRYPOINT ["/csi-snapshotter"]

0 commit comments

Comments
 (0)