dockerize

This commit is contained in:
Matt Drollette
2015-01-26 17:59:48 -06:00
parent 73dddf7776
commit e162f485b5
4 changed files with 44 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM golang
# Copy the local package files to the container's workspace.
ADD . /go/src/github.com/MDrollette/i2p-tools
# Make project CWD
WORKDIR /go/src/github.com/MDrollette/i2p-tools
# Build everything
RUN go get
RUN go build -o /i2p-tools
CMD ["/i2p-tools"]