mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-24 14:32:57 +08:00
Add Dockerfile changes from #674 and add my own change in as well
This commit is contained in:
parent
6c16878f55
commit
249d38e26d
1 changed files with 5 additions and 3 deletions
|
@ -2,7 +2,9 @@ FROM python:alpine3.13
|
|||
RUN mkdir /app
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
RUN apk add --update build-base libffi-dev libxml2-dev libxslt-dev
|
||||
RUN pip3 install -r requirements.txt
|
||||
RUN chmod +x *.py
|
||||
RUN apk add --no-cache build-base libffi-dev libxml2-dev libxslt-dev
|
||||
RUN /usr/local/bin/python -m pip install --upgrade pip
|
||||
RUN /usr/local/bin/python --version
|
||||
RUN pip3 install --no-cache-dir -r requirements.txt
|
||||
RUN chmod +x ./*.py
|
||||
ENTRYPOINT ["/app/theHarvester.py"]
|
||||
|
|
Loading…
Reference in a new issue