Update docker

This commit is contained in:
L1ghtn1ng 2020-03-08 22:10:36 +00:00
parent ce8bae71c7
commit 1f7efe13d8

View file

@ -2,7 +2,7 @@ FROM python:alpine3.11
RUN mkdir /app
WORKDIR /app
COPY . /app
RUN apk add build-base
RUN apk add build-base gcc openssl-dev
RUN pip3 install -r requirements.txt
RUN chmod +x *.py
ENTRYPOINT ["/app/theHarvester.py"]