Files
Actions/Dockerfile

5 lines
113 B
Docker

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