From 7d2f8eb4a8c451199136e8e408dd83bd952cfe03 Mon Sep 17 00:00:00 2001 From: Leon Jacobs Date: Mon, 25 Feb 2019 12:23:05 +0200 Subject: [PATCH] Use project requirements file to resolve dependencies. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b79babaa..011f778d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]