mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
17 lines
316 B
Docker
17 lines
316 B
Docker
|
FROM debian:10
|
||
|
|
||
|
WORKDIR /home/
|
||
|
|
||
|
RUN apt-get update
|
||
|
|
||
|
RUN apt-get install -y git
|
||
|
RUN apt-get install -y python3
|
||
|
RUN apt-get install -y python3-pip
|
||
|
RUN apt-get install -y php
|
||
|
RUN apt-get update
|
||
|
|
||
|
RUN git clone https://github.com/DarkSecDevelopers/HiddenEye
|
||
|
|
||
|
WORKDIR /home/HiddenEye/
|
||
|
|
||
|
RUN pip3 install -r requirements.txt
|