diff --git a/Dockerfile b/Dockerfile index a3a28302..22541280 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM python:3.12-slim-bookworm +FROM debian:testing-slim LABEL maintainer="@jay_townsend1 & @NotoriousRebel1" -RUN apt update && apt install -y pipx git curl gcc && rm -rf /var/lib/apt/lists/* && apt clean && apt autoremove -y +RUN apt update && apt dist-upgrade -y && apt install -y pipx git curl gcc && rm -rf /var/lib/apt/lists/* && apt clean && apt autoremove -y RUN pipx install --python python3.12 git+https://github.com/laramies/theHarvester.git RUN pipx ensurepath ENTRYPOINT ["/root/.local/bin/restfulHarvest", "-H", "0.0.0.0", "-p", "80"]