Merge pull request #279 from guedou/patch-1

Dockerfile fix
This commit is contained in:
Matt
2019-08-12 21:59:31 -04:00
committed by GitHub
+1
View File
@@ -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"]