Skip to content

Commit

Permalink
Upgrade to Python 3.13 and enhance Dockerfile setup
Browse files Browse the repository at this point in the history
Update base image to Python 3.13 and adjust pipx installation accordingly. Add curl and gcc installations, and ensure bashrc sourcing for environment setup.
  • Loading branch information
L1ghtn1ng committed Oct 27, 2024
1 parent 5b83e45 commit 4cf2707
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4cf2707

Please sign in to comment.