mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
19 lines
476 B
Docker
19 lines
476 B
Docker
FROM debian:10
|
|
LABEL maintaner="Equinockx moisestapia741@gmail.com"
|
|
|
|
WORKDIR /home/
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y git && \
|
|
apt-get install --no-install-recommends -y python3.7 && \
|
|
apt-get install -y python3-pip && \
|
|
apt-get install --no-install-recommends -y php && \
|
|
apt-get update && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN git clone https://github.com/DarkSecDevelopers/HiddenEye
|
|
|
|
WORKDIR /home/HiddenEye/
|
|
|
|
RUN pip3 install -r requirements.txt |