mirror of
https://github.com/josmo/drone-rancher.git
synced 2026-06-04 18:24:22 +08:00
12 lines
272 B
Docker
Executable File
12 lines
272 B
Docker
Executable File
# Docker image for the Drone build runner
|
|
#
|
|
# CGO_ENABLED=0 go build -a -tags netgo
|
|
# docker build --rm=true -t plugins/drone-rancher .
|
|
|
|
FROM gliderlabs/alpine:3.2
|
|
RUN apk add --update \
|
|
ca-certificates
|
|
ADD drone-rancher /bin/
|
|
ENTRYPOINT ["/bin/drone-rancher"]
|
|
|