From 0194769952d7b646ee317111df96802cf25effd7 Mon Sep 17 00:00:00 2001 From: jzold Date: Tue, 11 Dec 2018 21:23:18 +0000 Subject: [PATCH] Update dockerfile with beautifulsoup4 package --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7032980d..d228d915 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:2-alpine RUN mkdir /app -RUN pip install requests +RUN pip install requests beautifulsoup4 WORKDIR /app COPY . /app RUN chmod +x *.py - ENTRYPOINT ["/app/theHarvester.py"] \ No newline at end of file + ENTRYPOINT ["/app/theHarvester.py"]