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.

19 lines
462 B

7 years ago
# Docker image for the Drone clair plugin
#
# cd $GOPATH/src/github.com/jmccann/drone-clair
7 years ago
# go build
# docker build --rm=true -t jmccann/drone-clair .
7 years ago
FROM alpine:3.8
7 years ago
RUN apk update && \
apk add \
ca-certificates && \
rm -rf /var/cache/apk/*
ADD https://github.com/optiopay/klar/releases/download/v2.2.0/klar-2.2.0-linux-amd64 /usr/local/bin/klar
RUN chmod 0755 /usr/local/bin/klar
7 years ago
ADD drone-clair /bin/
ENTRYPOINT ["/bin/drone-clair"]