From 7a3a1fa76129dd24ea99349eaae7a14343aa3bab Mon Sep 17 00:00:00 2001 From: slashtechno <77907286+slashtechno@users.noreply.github.com> Date: Sat, 17 Dec 2022 21:41:25 -0600 Subject: [PATCH] Use `CMD` instead of `entrypoint` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8417d6e..5cee32b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,4 +35,4 @@ RUN pip3 install -r requirements.txt # Install wait-for-it so this can easily be used with docker-compose # Example: command: ["./wait-for-it.sh", "bridge:8554", "--", "python", "main.py"] RUN wget https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh && chmod +x wait-for-it.sh && mv wait-for-it.sh /usr/local/bin -ENTRYPOINT ["python", "main.py"] \ No newline at end of file +CMD ["python", "main.py"] \ No newline at end of file