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.
12 lines
221 B
Docker
12 lines
221 B
Docker
FROM alpine:3.9.4
|
|
|
|
RUN apk add -U --no-cache ca-certificates
|
|
|
|
ENV GODEBUG=netdns=go
|
|
ADD release/woodpecker-agent /bin/
|
|
|
|
EXPOSE 3000
|
|
HEALTHCHECK CMD ["/bin/woodpecker-agent", "ping"]
|
|
|
|
ENTRYPOINT ["/bin/woodpecker-agent"]
|
|
|