action-gitea-mirror/Dockerfile
2021-04-30 06:33:27 +05:30

13 lines
216 B
Docker

FROM varunsridharan/actions-alpine:latest
RUN apk add python3
RUN apk add py3-pip
RUN pip3 install "PyGithub==1.54.1"
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]