From 27933a193c65f213491764c44e38e326fa740111 Mon Sep 17 00:00:00 2001 From: Ozeliurs Date: Fri, 20 Dec 2024 15:00:03 +0100 Subject: [PATCH] fix(Dockerfile): update command to use ENTRYPOINT instead of CMD for a more predictable container startup behavior --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 073a4a6..7491d3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,4 @@ RUN pip install -r Sublist3r/requirements.txt EXPOSE 80 # Run Sublist3r when the container launches -CMD [ "python", "Sublist3r/sublist3r.py" ] +ENTRYPOINT [ "python3", "Sublist3r/sublist3r.py" ]