Merge pull request #30 from salanki/master

Run gitwatch in Docker container
pull/77/head
Dave Musicant 5 years ago committed by GitHub
commit 6eb3c226c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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"]
Loading…
Cancel
Save