Skip to content

Commit

Permalink
Add Makefile and Gopkg files
Browse files Browse the repository at this point in the history
This PR adds Makefile, Dockerfile, Gopkg file, and other scripts.
  • Loading branch information
xing-yang committed Jul 12, 2018
1 parent 45ef209 commit 74e77b7
Show file tree
Hide file tree
Showing 7 changed files with 692 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Compiled binaries and deployment files
/bin/
/deploy/docker/csi-snapshotter

# Binaries for programs and plugins
*.exe
*.exe~
Expand Down
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM alpine
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Snapshotter"

COPY ./bin/csi-snapshotter csi-snapshotter
ENTRYPOINT ["/csi-snapshotter"]
Loading

0 comments on commit 74e77b7

Please sign in to comment.