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
458 B

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