1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

Merge pull request #353 from cclauss/patch-1

Dockerfile: Use pip dependency resolver
This commit is contained in:
Hardik Zinzuvadiya
2023-03-06 05:14:12 -05:00
committed by GitHub

View File

@ -11,10 +11,7 @@ WORKDIR /root/hackingtool
COPY . .
RUN true && \
pip3 install -r requirements.txt;
RUN true && \
pip3 install lolcat boxes flask requests;
pip3 install boxes flask lolcat requests -r requirements.txt;
RUN true && \
echo "/root/hackingtool/" > /home/hackingtoolpath.txt;