stop docker service before exit

This commit is contained in:
Brad Rydzewski
2015-05-14 23:20:26 -07:00
parent 67806aa90a
commit 8932dda6d9
4 changed files with 115 additions and 3 deletions

View File

@@ -5,10 +5,16 @@
FROM ubuntu:14.04
RUN apt-get update -qq \
&& apt-get -y install curl \
&& apt-get -y install curl \
apt-transport-https \
ca-certificates \
curl \
lxc \
iptables \
&& curl -sSL https://get.docker.com/ubuntu/ | sh \
&& rm -rf /var/lib/apt/lists/*
ADD drone-docker /go/bin/
ADD wrapdocker /bin/
ENTRYPOINT ["/go/bin/drone-docker"]