You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitwatch/Dockerfile

11 lines
197 B
Docker

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"]