Update dockerfile for running tests

Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@docker.com> (github: crosbymichael)
This commit is contained in:
Michael Crosby 2014-07-23 10:32:31 -07:00
parent 80c1ae9051
commit 53a67a77b9
1 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ FROM crosbymichael/golang
RUN apt-get update && apt-get install -y gcc RUN apt-get update && apt-get install -y gcc
ADD . /go/src/github.com/docker/libcontainer ADD . /go/src/github.com/docker/libcontainer
RUN cd /go/src/github.com/docker/libcontainer && go get -d ./... && go install ./... WORKDIR /go/src/github.com/docker/libcontainer
RUN go get -d ./... && go install ./...
CMD ["nsinit"] CMD ["go", "test", "./..."]