diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7d5bc98 --- /dev/null +++ b/Dockerfile @@ -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"]