From c350eae1e0202d11c7d718122b5faf0dc839f9b7 Mon Sep 17 00:00:00 2001 From: L1ghtn1ng Date: Sun, 26 Jan 2025 21:04:16 +0000 Subject: [PATCH] move dockerfile to use debian testing slim --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"]