Skip to content

Commit

Permalink
Update pipx install to specify Python version
Browse files Browse the repository at this point in the history
Specifying Python 3.12 for pipx installation ensures compatibility and proper functionality of the installed package. This change avoids any default Python version conflicts that might arise during the build process.
  • Loading branch information
L1ghtn1ng committed Oct 27, 2024
1 parent edfdf5f commit 5b83e45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.12-slim-bookworm
LABEL maintainer="@jay_townsend1 & @NotoriousRebel1"
RUN apt update && apt install -y pipx git && rm -rf /var/lib/apt/lists/*
RUN pipx install git+https://github.com/laramies/theHarvester.git
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"]
EXPOSE 80

0 comments on commit 5b83e45

Please sign in to comment.