From 5d3892e3b0d8add8dfd5f2d06aec698f8c19b727 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Tue, 27 Jan 2015 12:27:21 -0800 Subject: [PATCH] remove drone --- drone/Dockerfile | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 drone/Dockerfile diff --git a/drone/Dockerfile b/drone/Dockerfile deleted file mode 100644 index d2979cc..0000000 --- a/drone/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -FROM google/golang -ENV DRONE_SERVER_PORT :80 - -RUN apt-get update && apt-get -y install \ - libsqlite3-dev \ - sqlite3 \ - zip \ - --no-install-recommends - -RUN git clone https://github.com/drone/drone.git /gopath/src/github.com/drone/drone - -WORKDIR /gopath/src/github.com/drone/drone - -RUN make deps build test embed install - -EXPOSE 80 - -ENTRYPOINT ["/usr/local/bin/droned"] - -CMD ["--config=/etc/drone/drone.toml"]