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