From a39d4040bb2b5547f364f40931042e1c3da2af10 Mon Sep 17 00:00:00 2001 From: Guillaume Valadon Date: Mon, 12 Aug 2019 18:17:00 +0200 Subject: [PATCH] Dockerfile fix This PR allows to run: ``` docker built -t the/harvester . ``` Otherwise, `pip` complains that `gcc` is not installed. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 011f778d..9411e78f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM python:3.6-alpine3.7 RUN mkdir /app WORKDIR /app COPY . /app +RUN apk add build-base RUN pip3 install -r requirements.txt RUN chmod +x *.py ENTRYPOINT ["/app/theHarvester.py"]