mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 18:01:02 +00:00
b3d40024a9
Renamed `cmd/drone-agent` to `cmd/agent` and `cmd/drone-server` to `cmd/server` and binaries to get rid of the drone name.
10 lines
254 B
Docker
10 lines
254 B
Docker
# docker build --rm -f Dockerfile.agent -t woodpeckerci/woodpecker-agent .
|
|
|
|
FROM drone/ca-certs
|
|
ENV GODEBUG=netdns=go
|
|
ADD release/woodpecker-agent /bin/
|
|
|
|
EXPOSE 3000
|
|
HEALTHCHECK CMD ["/bin/woodpecker-agent", "ping"]
|
|
|
|
ENTRYPOINT ["/bin/woodpecker-agent"]
|