fix(Dockerfile): update command to use ENTRYPOINT instead of CMD for a more predictable container startup behavior
This commit is contained in:
parent
cd2be6a2d3
commit
27933a193c
|
|
@ -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" ]
|
||||
|
|
|
|||
Loading…
Reference in New Issue