mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 01:23:05 +08:00
a39d4040bb
This PR allows to run: ``` docker built -t the/harvester . ``` Otherwise, `pip` complains that `gcc` is not installed.
8 lines
180 B
Docker
8 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"]
|