action-gitea-mirror/Dockerfile

13 lines
216 B
Docker
Raw Normal View History

2020-10-26 10:17:14 +08:00
FROM varunsridharan/actions-alpine:latest
2020-10-16 22:33:01 +08:00
RUN apk add python3
2020-10-16 22:26:07 +08:00
2020-10-16 22:34:44 +08:00
RUN apk add py3-pip
2021-04-30 09:03:27 +08:00
RUN pip3 install "PyGithub==1.54.1"
2020-10-16 22:26:07 +08:00
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]