added a docker file
This commit is contained in:
parent
0feeb5c477
commit
4120a3e5ff
|
|
@ -0,0 +1,12 @@
|
|||
FROM python:alpine3.13
|
||||
|
||||
RUN mkdir /app
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
|
||||
RUN /usr/local/bin/python -m pip install --upgrade pip
|
||||
RUN /usr/local/bin/python --version
|
||||
|
||||
RUN pip3 install --no-cache-dir -r requirements.txt
|
||||
RUN chmod +x ./*.py
|
||||
ENTRYPOINT [ "/app/sublist3r2.py" ]
|
||||
Loading…
Reference in New Issue