mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 11:06:56 +08:00
5 lines
117 B
Docker
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"]
|