theHarvester/Dockerfile

8 lines
180 B
Docker
Raw Normal View History

2020-03-09 05:49:07 +08:00
FROM python:3.7-alpine3.10
2018-11-23 05:20:06 +08:00
RUN mkdir /app
WORKDIR /app
COPY . /app
2020-03-09 05:49:07 +08:00
RUN apk add build-base
RUN pip3 install -r requirements.txt
RUN chmod +x *.py
2020-03-09 05:49:07 +08:00
ENTRYPOINT ["/app/theHarvester.py"]