From d86368235820da1b57f8c493664b26e37e6b2a05 Mon Sep 17 00:00:00 2001 From: umarcor Date: Sat, 4 Dec 2021 20:33:18 +0100 Subject: [PATCH] Tip/Dockerfile: use CMD instead of ENTRYPOINT --- tip/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tip/Dockerfile b/tip/Dockerfile index 7b41545..3079fa5 100644 --- a/tip/Dockerfile +++ b/tip/Dockerfile @@ -1,4 +1,4 @@ FROM python:3.9-slim-bullseye COPY tip.py /tip.py RUN pip install PyGithub --progress-bar off -ENTRYPOINT ["/tip.py"] +CMD ["/tip.py"]