fix(Dockerfile): update command to use ENTRYPOINT instead of CMD for a more predictable container startup behavior

This commit is contained in:
Ozeliurs 2024-12-20 15:00:03 +01:00
parent cd2be6a2d3
commit 27933a193c
No known key found for this signature in database
GPG Key ID: DC5DE5E56928EB25
1 changed files with 1 additions and 1 deletions

View File

@ -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" ]