refactor(Dockerfile): replace ENTRYPOINT with CMD to allow for easier command override

This commit is contained in:
Ozeliurs 2024-12-20 14:55:41 +01:00
parent 2d0fed0f2e
commit cd2be6a2d3
No known key found for this signature in database
GPG Key ID: DC5DE5E56928EB25
1 changed files with 2 additions and 2 deletions

View File

@ -9,4 +9,4 @@ RUN pip install -r Sublist3r/requirements.txt
EXPOSE 80
# Run Sublist3r when the container launches
ENTRYPOINT [ "sh", "-c", "python", "Sublist3r/sublist3r.py" ]
CMD [ "python", "Sublist3r/sublist3r.py" ]