mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-24 01:18:39 +00:00
Merge pull request #353 from cclauss/patch-1
Dockerfile: Use pip dependency resolver
This commit is contained in:
commit
b2cf73c8f4
1 changed files with 2 additions and 5 deletions
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue