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.
This commit is contained in:
Christoph Reiter
2021-11-20 11:49:40 +01:00
committed by GitHub
parent cec300fd51
commit 7bc8117e1d

View File

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