action-gitea-mirror/Dockerfile
2020-10-26 07:47:14 +05:30

13 lines
206 B
Docker

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