Update docker

This commit is contained in:
L1ghtn1ng 2020-03-08 22:24:28 +00:00
parent 76a536a89f
commit f31f634610

View file

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