1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-11-30 08:06:52 +02:00
woodpecker/Dockerfile

31 lines
871 B
Docker
Raw Normal View History

2015-09-30 03:21:17 +02:00
# Build the drone executable on a x64 Linux host:
#
# go build --ldflags '-extldflags "-static"' -o drone_static
#
#
# Alternate command for Go 1.4 and older:
#
# go build -a -tags netgo --ldflags '-extldflags "-static"' -o drone_static
#
#
# Build the docker image:
#
# docker build --rm=true -t drone/drone .
2015-09-30 03:21:17 +02:00
FROM centurylink/ca-certs
2015-10-01 07:16:42 +02:00
EXPOSE 8000
ADD contrib/docker/etc/nsswitch.conf /etc/
2015-05-18 19:05:58 +02:00
ENV DATABASE_DRIVER=sqlite3
ENV DATABASE_CONFIG=/var/lib/drone/drone.sqlite
2016-04-20 03:37:53 +02:00
ADD drone/drone /drone
2016-04-13 02:27:24 +02:00
# Alpine Linux doesn't use pam, which means that there is no /etc/nsswitch.conf,
# but Go and CGO rely on /etc/nsswitch.conf to check the order of DNS resolving.
# To fix this we just create /etc/nsswitch.conf and add the following line:
#RUN echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf
2016-04-20 03:37:53 +02:00
ENTRYPOINT ["/drone"]
CMD ["serve"]