From 4cf270724e2f40cbd97ca9fd83d6b3da23bc57df Mon Sep 17 00:00:00 2001 From: L1ghtn1ng Date: Sun, 27 Oct 2024 01:12:37 +0000 Subject: [PATCH] Upgrade to Python 3.13 and enhance Dockerfile setup Update base image to Python 3.13 and adjust pipx installation accordingly. Add curl and gcc installations, and ensure bashrc sourcing for environment setup. --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4e23c737..92aaad35 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ -FROM python:3.12-slim-bookworm +FROM python:3.13-slim-bookworm LABEL maintainer="@jay_townsend1 & @NotoriousRebel1" -RUN apt update && apt install -y pipx git && rm -rf /var/lib/apt/lists/* -RUN pipx install --python python3.12 git+https://github.com/laramies/theHarvester.git +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