Merge pull request #69 from whitlockjc/dockerfile
Add a Dockerfile for building Drone.io Docker containers.
This commit is contained in:
commit
39d80e953b
1 changed files with 27 additions and 0 deletions
27
Dockerfile
Normal file
27
Dockerfile
Normal file
|
@ -0,0 +1,27 @@
|
|||
FROM ubuntu:13.10
|
||||
|
||||
MAINTAINER Drone.io Team
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y wget gcc make g++ build-essential ca-certificates mercurial git bzr libsqlite3-dev sqlite3
|
||||
|
||||
RUN wget https://go.googlecode.com/files/go1.2.src.tar.gz && tar zxvf go1.2.src.tar.gz && cd go/src && ./make.bash
|
||||
|
||||
ENV PATH $PATH:/go/bin:/gocode/bin
|
||||
ENV GOPATH /gocode
|
||||
|
||||
RUN mkdir -p /gocode/src/github.com/drone
|
||||
|
||||
ADD . /gocode/src/github.com/drone/drone
|
||||
|
||||
WORKDIR /gocode/src/github.com/drone/drone
|
||||
|
||||
RUN make deps
|
||||
RUN make
|
||||
RUN make install
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
ENTRYPOINT ["/usr/local/bin/droned"]
|
||||
|
||||
CMD ["--port=:80", "--path=/var/lib/drone/drone.sqlite"]
|
Loading…
Reference in a new issue