mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 19:16:57 +08:00
5 lines
113 B
Docker
5 lines
113 B
Docker
FROM python:slim-bullseye
|
|
COPY tip.py /tip.py
|
|
RUN pip install PyGithub --progress-bar off
|
|
ENTRYPOINT ["/tip.py"]
|