github-mirror/Dockerfile

13 lines
346 B
Docker

FROM alpine
LABEL "name"="GitHub Mirror"
LABEL "description"="Universal mirroring repository tool."
LABEL "maintainer"="Kai Kimera <mail@kai.kim>"
LABEL "repository"="https://github.com/ghastore/github-mirror.git"
LABEL "homepage"="https://github.com/ghastore"
COPY *.sh /
RUN apk add --no-cache bash git git-lfs
ENTRYPOINT ["/entrypoint.sh"]