14 lines
162 B
Docker
14 lines
162 B
Docker
# Alpine base image
|
|
FROM alpine:edge
|
|
|
|
VOLUME /data
|
|
|
|
RUN apk add --no-cache git bash
|
|
|
|
ADD checker/* src/* /usr/local/bin/
|
|
|
|
|
|
CMD [ "/usr/local/bin/run-checker" ]
|
|
|
|
|