Merge pull request #2 from Sable-20/master

added a docker file
This commit is contained in:
RoninNakomoto 2021-04-05 07:06:11 +00:00 committed by GitHub
commit 93e4fa4341
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" ]