Added Dockerfile

This commit is contained in:
Alton Johnson 2022-11-28 22:43:21 -05:00
parent 729d649ec5
commit f0e1c56620
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM ubuntu:latest
ARG DEBIAN_FRONTEND=noninteractive
COPY . .
RUN apt update && \
apt install python3-pip python-is-python3 -y && \
pip install -r requirements.txt
# Run ./sublist3r plus arguments passed by docker run
ENTRYPOINT ["python3", "sublist3r.py"]