2014-07-17 05:28:31 +08:00
|
|
|
FROM crosbymichael/golang
|
|
|
|
|
2014-08-05 03:31:58 +08:00
|
|
|
RUN apt-get update && apt-get install -y gcc make
|
2014-07-24 01:58:45 +08:00
|
|
|
RUN go get code.google.com/p/go.tools/cmd/cover
|
2014-07-17 05:28:31 +08:00
|
|
|
|
2014-07-24 08:14:27 +08:00
|
|
|
# setup a playground for us to spawn containers in
|
|
|
|
RUN mkdir /busybox && \
|
2014-07-24 09:07:07 +08:00
|
|
|
curl -sSL 'https://github.com/jpetazzo/docker-busybox/raw/buildroot-2014.02/rootfs.tar' | tar -xC /busybox
|
2014-07-24 08:14:27 +08:00
|
|
|
|
2014-07-25 05:21:02 +08:00
|
|
|
RUN curl -sSL https://raw.githubusercontent.com/docker/docker/master/hack/dind -o /dind && \
|
2014-07-24 08:14:27 +08:00
|
|
|
chmod +x /dind
|
|
|
|
|
|
|
|
COPY . /go/src/github.com/docker/libcontainer
|
2014-07-24 01:32:31 +08:00
|
|
|
WORKDIR /go/src/github.com/docker/libcontainer
|
2014-07-24 08:14:27 +08:00
|
|
|
RUN cp sample_configs/minimal.json /busybox/container.json
|
|
|
|
|
2014-08-05 03:31:58 +08:00
|
|
|
ENV GOPATH $GOPATH:/go/src/github.com/docker/libcontainer/vendor
|
|
|
|
|
2014-07-24 09:07:07 +08:00
|
|
|
RUN go get -d -v ./...
|
2014-08-05 03:31:58 +08:00
|
|
|
RUN make direct-install
|
2014-07-17 05:28:31 +08:00
|
|
|
|
2014-07-24 08:14:27 +08:00
|
|
|
ENTRYPOINT ["/dind"]
|
2014-08-05 03:31:58 +08:00
|
|
|
CMD ["make", "direct-test"]
|