addition Dockerfile

This commit is contained in:
amandinemart1 2024-12-20 14:09:37 +01:00
parent 729d649ec5
commit e9d0765472
1 changed files with 12 additions and 0 deletions

12
Dockerimage/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM python:3.9-slim
# Install Sublist3r
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/aboul3la/Sublist3r.git
RUN pip install -r Sublist3r/requirements.txt
# Make port 80 available to the world outside this container
EXPOSE 80
# Run Sublist3r when the container launches
ENTRYPOINT [ "sh", "-c", "python", "Sublist3r/sublist3r.py" ]