initial working version of plugin

This commit is contained in:
Brad Rydzewski
2015-05-14 22:12:50 -07:00
parent 0f2b6fd359
commit 67806aa90a
4 changed files with 150 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# Docker image for the docker plugin
#
# docker build --rm=true -t plugins/drone-docker .
FROM ubuntu:14.04
RUN apt-get update -qq \
&& apt-get -y install curl \
&& curl -sSL https://get.docker.com/ubuntu/ | sh \
&& rm -rf /var/lib/apt/lists/*
ADD drone-docker /go/bin/
ENTRYPOINT ["/go/bin/drone-docker"]