theHarvester/Dockerfile
Guillaume Valadon a39d4040bb
Dockerfile fix
This PR allows to run:
```
docker built -t the/harvester .
```

Otherwise, `pip` complains that `gcc` is not installed.
2019-08-12 18:17:00 +02:00

9 lines
180 B
Docker

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"]