FROM alpine:3.4

RUN apk update && \
  apk add ca-certificates && \
  rm -rf /var/cache/apk/*

ADD drone-scp /

ENTRYPOINT ["/drone-scp"]
