Files
Actions/Dockerfile
Christoph Reiter 7bc8117e1d docker: revert to Python 3.9 (#163)
Related to #160. The errors started around the time when Python 3.10 was
released, so go back to 3.9.x to see if that is related.
2021-11-20 11:49:40 +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"]