diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..36e4ce3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM alpine:3.1 +RUN apk add --update bash git inotify-tools openssh && rm -rf /var/cache/apk/* + +RUN mkdir -p /app +WORKDIR /app +ADD gitwatch.sh ./ + +RUN chmod 755 *.sh + +ENTRYPOINT ["./gitwatch.sh"]