Merge pull request #100 from crosbymichael/add-dockerfile

Add dockerfile
This commit is contained in:
Michael Crosby 2014-07-16 15:02:02 -07:00
commit be85764f10
1 changed files with 8 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM crosbymichael/golang
RUN apt-get update && apt-get install -y gcc
ADD . /go/src/github.com/docker/libcontainer
RUN cd /go/src/github.com/docker/libcontainer && go get -d ./... && go install ./...
CMD ["nsinit"]