Skip to content

Commit

Permalink
Move setuptools installation earlier
Browse files Browse the repository at this point in the history
It is now required for the installation
  • Loading branch information
tomdot-dev committed Mar 19, 2024
1 parent 9501cc3 commit badc055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ RUN apt-get update && \
WORKDIR /wifite2
# hadolint ignore=DL3008
RUN apt-get update && \
apt-get install python3-pip ca-certificates -y --no-install-recommends && \
apt-get install python3-pip python3-setuptools ca-certificates -y --no-install-recommends && \
pip3 install --no-cache-dir -r /wifite2/requirements.txt && \
python3 /wifite2/setup.py install && \
apt-get purge python3-pip ca-certificates -y && \
apt-get install python3-pkg-resources python3-setuptools -y --no-install-recommends && \
apt-get install python3-pkg-resources -y --no-install-recommends && \
apt-get autoclean && \
apt-get autoremove -y && \
rm -rf /var/lib/dpkg/status-old /var/lib/apt/lists/*
Expand Down

0 comments on commit badc055

Please sign in to comment.