repo-cloner/Dockerfile

14 lines
162 B
Docker
Raw Normal View History

2018-02-06 11:53:29 +01:00
# Alpine base image
FROM alpine:edge
VOLUME /data
RUN apk add --no-cache git bash
ADD checker/* src/* /usr/local/bin/
2018-02-06 11:53:29 +01:00
CMD [ "/usr/local/bin/run-checker" ]
2018-02-06 11:53:29 +01:00