Sublist3r/Dockerfile

8 lines
105 B
Docker

FROM python:alpine
COPY . .
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "sublist3r.py"]