use image 'python:slim-bullseye' instead of 'python:alpine'

This commit is contained in:
eine
2021-11-15 21:16:24 +01:00
parent fb0c52cbfb
commit 5dbb1c55c1

View File

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