1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-12 08:23:48 +02:00
woodpecker/Dockerfile

17 lines
462 B
Docker
Raw Normal View History

2014-07-17 08:14:53 +03:00
# This is a Docker image for the Drone CI system.
# Use the following command to start the container:
# docker run -p 127.0.0.1:80:80 -t drone/drone
FROM google/golang
2014-10-12 06:48:24 +03:00
ENV DRONE_SERVER_PORT :80
2014-07-18 08:25:30 +03:00
2014-07-17 08:14:53 +03:00
ADD . /gopath/src/github.com/drone/drone/
WORKDIR /gopath/src/github.com/drone/drone
2014-10-12 06:48:24 +03:00
RUN apt-get update
RUN apt-get -y install zip libsqlite3-dev sqlite3 1> /dev/null 2> /dev/null
2015-01-16 07:35:38 +02:00
RUN make deps build embed install
2014-07-17 08:14:53 +03:00
EXPOSE 80
ENTRYPOINT ["/usr/local/bin/droned"]