added a docker file

This commit is contained in:
Sable no 2021-03-30 10:11:32 -04:00 committed by GitHub
parent 0feeb5c477
commit 4120a3e5ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -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" ]