Unverified Commit b2cf73c8 authored by Hardik Zinzuvadiya's avatar Hardik Zinzuvadiya Committed by GitHub
Browse files

Merge pull request #353 from cclauss/patch-1

Dockerfile: Use pip dependency resolver
parents ca2f8d67 3fd3ce4c
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -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;