Use project requirements file to resolve dependencies.

This commit is contained in:
Leon Jacobs 2019-02-25 12:23:05 +02:00
parent da000ba2fc
commit 7d2f8eb4a8
No known key found for this signature in database
GPG key ID: AE1F25096C0CB06B

View file

@ -1,7 +1,7 @@
FROM python:3.6-alpine3.7
RUN mkdir /app
RUN pip3 install requests beautifulsoup4 texttable plotly shodan
WORKDIR /app
COPY . /app
RUN pip3 install -r requirements.txt
RUN chmod +x *.py
ENTRYPOINT ["/app/theHarvester.py"]