Skip to content

Commit eca951f

Browse files
committed
Add Makefile and Gopkg files
This PR adds Makefile, Dockerfile, Gopkg file, and other scripts.
1 parent 1c42a9f commit eca951f

File tree

7 files changed

+692
-0
lines changed

7 files changed

+692
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
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

Lines changed: 6 additions & 0 deletions
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)