move dockerfile to use debian testing slim

This commit is contained in:
L1ghtn1ng 2025-01-26 21:04:16 +00:00
parent 9d0d393cc5
commit c350eae1e0

View file

@ -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"]