Files
Actions/tip/Dockerfile
2021-12-02 02:54:41 +01:00

5 lines
117 B
Docker

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