mirror of
https://github.com/harness/drone.git
synced 2025-05-07 16:11:52 +08:00
10 lines
254 B
Docker
10 lines
254 B
Docker
# Docker image for the Drone build runner
|
|
#
|
|
# CGO_ENABLED=0 go build -a -tags netgo
|
|
# docker build --rm=true -t drone/drone-build .
|
|
|
|
FROM gliderlabs/alpine:3.1
|
|
RUN apk-install ca-certificates
|
|
ADD drone-build /bin/
|
|
ENTRYPOINT ["/bin/drone-build"]
|