Tip/Dockerfile: use CMD instead of ENTRYPOINT

This commit is contained in:
umarcor
2021-12-04 20:33:18 +01:00
parent 22afac70b8
commit d863682358

View File

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