Skip to content

Commit

Permalink
add psutil
Browse files Browse the repository at this point in the history
  • Loading branch information
thewhiteh4t committed Aug 27, 2023
1 parent 837e623 commit c258e95
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ python3 \
py3-pip gcc \
python3-dev \
php php-json openssh
RUN pip3 install requests packaging
RUN pip3 install requests packaging psutil
WORKDIR /root/seeker
RUN git clone https://github.com/thewhiteh4t/seeker.git .
EXPOSE 8080
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ python3 \
py3-pip gcc \
python3-dev \
php php-json openssh
RUN pip3 install requests packaging
RUN pip3 install requests packaging psutil
WORKDIR /root/seeker
COPY . .
EXPOSE 8080
Expand Down
5 changes: 5 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ pip3 install packaging &>> "$ILOG"
status_check Packaging
echo -e '\n--------------------\n' >> "$ILOG"

echo -ne 'Psutil\r'
pip3 install psutil &>> "$ILOG"
status_check Psutil
echo -e '\n--------------------\n' >> "$ILOG"

echo -e '=========\nCOMPLETED\n=========\n' >> "$ILOG"

echo -e '\n[+] Log Saved :' "$ILOG"

0 comments on commit c258e95

Please sign in to comment.