Skip to content

Commit

Permalink
fix: pip package
Browse files Browse the repository at this point in the history
  • Loading branch information
the-soloist committed Jun 11, 2024
1 parent 7d80214 commit f5d5f6a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions build/ubuntu/lts/24.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ RUN apt-get update && \
apt-get install -y gdb gdbserver strace socat openssh-server net-tools iputils-ping && \
apt-get install -y git vim tmux wget curl sshfs

# temporary fix error: externally-managed-environment
RUN mv /usr/lib/python3.12/EXTERNALLY-MANAGED /usr/lib/python3.12/EXTERNALLY-MANAGED.bak

# install pwn tools
RUN pip3 install pip --upgrade
RUN pip3 install prettytable colorama loguru tqdm && \
Expand Down
4 changes: 3 additions & 1 deletion build/ubuntu/non-lts/23.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@ RUN apt-get update && \
apt-get install -y gdb gdbserver strace socat openssh-server net-tools iputils-ping && \
apt-get install -y git vim tmux wget curl sshfs

# install pwn tools
# temporary fix error: externally-managed-environment
RUN mv /usr/lib/python3.11/EXTERNALLY-MANAGED /usr/lib/python3.11/EXTERNALLY-MANAGED.bak

# install pwn tools
RUN pip3 install pip --upgrade
RUN pip3 install prettytable colorama loguru tqdm && \
pip3 install ipdb websocket-client psutil requests redis && \
Expand Down

0 comments on commit f5d5f6a

Please sign in to comment.