Added Dockerfile
This commit is contained in:
parent
729d649ec5
commit
f0e1c56620
|
@ -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"]
|
Loading…
Reference in New Issue