From 1eadd8ff98e100319ae6a825481e0f5931038a24 Mon Sep 17 00:00:00 2001 From: Jean Mertz Date: Fri, 5 Jun 2015 19:48:28 +0200 Subject: [PATCH] add empty drone.toml to satisfy drone startup requirements --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4ce6a862..a3ee5408 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,12 +6,15 @@ WORKDIR $GOPATH/src/github.com/drone/drone EXPOSE 80 ENTRYPOINT ["/usr/local/bin/drone"] +CMD ["-config", "/tmp/drone.toml"] RUN apt-get update \ && apt-get install -y libsqlite3-dev \ && git clone git://github.com/gin-gonic/gin.git $GOPATH/src/github.com/gin-gonic/gin \ && go get -u github.com/jteeuwen/go-bindata/... +RUN touch /tmp/drone.toml + ADD . . RUN make bindata deps \ && make build \