Files
Actions/Dockerfile
2020-05-14 18:38:01 +02:00

5 lines
106 B
Docker

FROM python:alpine
COPY tip.py /tip.py
RUN pip install PyGithub --progress-bar off
ENTRYPOINT ["/tip.py"]