mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
00047d5339
Add another netlink test and remove the -v from the dockerfile test output Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@docker.com> (github: crosbymichael)
11 lines
292 B
Docker
11 lines
292 B
Docker
FROM crosbymichael/golang
|
|
|
|
RUN apt-get update && apt-get install -y gcc
|
|
RUN go get code.google.com/p/go.tools/cmd/cover
|
|
|
|
ADD . /go/src/github.com/docker/libcontainer
|
|
WORKDIR /go/src/github.com/docker/libcontainer
|
|
RUN go get -d ./... && go install ./...
|
|
|
|
CMD ["go", "test", "-cover", "./..."]
|