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

12 lines
201 B
Docker

FROM alpine:3.1
# hadolint ignore=DL3018
RUN apk add --no-cache bash git inotify-tools openssh
RUN mkdir -p /app
WORKDIR /app
COPY gitwatch.sh ./
RUN chmod 755 -- *.sh
ENTRYPOINT ["./gitwatch.sh"]