Skip to content

Commit

Permalink
Merge pull request Z4nzu#353 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Dockerfile: Use pip dependency resolver
  • Loading branch information
Z4nzu authored Mar 6, 2023
2 parents ca2f8d6 + 3fd3ce4 commit b2cf73c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,11 @@ 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;

EXPOSE 1-65535

ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"]
ENTRYPOINT ["python3", "/root/hackingtool/hackingtool.py"]

0 comments on commit b2cf73c

Please sign in to comment.