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