mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 03:41:01 +00: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"]
|