You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
327 B

# Docker image for the Drone clair plugin
#
# cd $GOPATH/src/github.com/Unikorn123/drone-clair
# go build
# docker build --rm=true -t Unikorn123/drone-clair .
FROM alpine:3.3
RUN apk update && \
apk add \
ca-certificates && \
rm -rf /var/cache/apk/*
ADD drone-clair /bin/
ENTRYPOINT ["/bin/drone-clair"]