mirror of
https://github.com/laramies/theHarvester.git
synced 2026-09-14 05:37:41 +02:00
Update base image to Python 3.13 and adjust pipx installation accordingly. Add curl and gcc installations, and ensure bashrc sourcing for environment setup.
9 lines
379 B
Docker
9 lines
379 B
Docker
FROM python:3.13-slim-bookworm
|
|
LABEL maintainer="@jay_townsend1 & @NotoriousRebel1"
|
|
RUN apt update && apt install -y pipx git curl gcc && rm -rf /var/lib/apt/lists/*
|
|
RUN pipx install --python python3.13 git+https://github.com/laramies/theHarvester.git
|
|
RUN pipx ensurepath
|
|
RUN source ~/.bashrc
|
|
ENTRYPOINT ["/root/.local/bin/restfulHarvest", "-H", "0.0.0.0", "-p", "80"]
|
|
EXPOSE 80
|