15 lines
571 B
Plaintext
15 lines
571 B
Plaintext
|
FROM golang:1.4
|
||
|
|
||
|
RUN echo "deb http://ftp.us.debian.org/debian testing main contrib" >> /etc/apt/sources.list
|
||
|
RUN apt-get update && apt-get install -y iptables criu=1.6-2 && rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
# setup a playground for us to spawn containers in
|
||
|
RUN mkdir /busybox && \
|
||
|
curl -sSL 'https://github.com/jpetazzo/docker-busybox/raw/buildroot-2014.11/rootfs.tar' | tar -xC /busybox
|
||
|
|
||
|
RUN curl -sSL https://raw.githubusercontent.com/docker/docker/master/hack/dind -o /dind && \
|
||
|
chmod +x /dind
|
||
|
|
||
|
WORKDIR /go/src/github.com/opencontainers/runc
|
||
|
ENTRYPOINT ["/dind"]
|