1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-17 17:45:03 +02:00
woodpecker/Dockerfile

30 lines
872 B
Docker
Raw Normal View History

2015-09-29 18:21:17 -07: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-29 18:21:17 -07:00
FROM centurylink/ca-certs
2015-09-30 22:16:42 -07:00
EXPOSE 8000
ADD contrib/docker/etc/nsswitch.conf /etc/
2015-05-18 10:05:58 -07:00
ENV DATABASE_DRIVER=sqlite3
ENV DATABASE_CONFIG=/var/lib/drone/drone.sqlite
2015-09-29 18:21:17 -07:00
ADD drone_static /drone_static
2016-04-12 17:27:24 -07: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
ENTRYPOINT ["/drone_static"]