git-sync/Dockerfile

10 lines
120 B
Docker
Raw Permalink Normal View History

2020-12-09 12:36:11 +00:00
FROM alpine/git
RUN apk update && apk add bash curl jq
WORKDIR /app
ADD sync.sh sync.sh
ENTRYPOINT ["/app/sync.sh"]