mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-10 17:13:07 +08:00
7 lines
328 B
Docker
7 lines
328 B
Docker
FROM python:3.11-slim-bookworm
|
|
LABEL maintainer="@jay_townsend1 & @NotoriousRebel1"
|
|
RUN apt update && apt install -y pipx git; apt clean; apt autoremove -y
|
|
RUN pipx install git+https://github.com/laramies/theHarvester.git
|
|
RUN pipx ensurepath
|
|
ENTRYPOINT ["/root/.local/bin/restfulHarvest", "-H", "0.0.0.0", "-p", "80"]
|
|
EXPOSE 80
|