2020-07-26 11:01:11 +08:00
|
|
|
FROM debian:10
|
2020-07-26 11:03:07 +08:00
|
|
|
LABEL maintaner="Equinockx moisestapia741@gmail.com"
|
2020-07-26 11:01:11 +08:00
|
|
|
|
|
|
|
WORKDIR /home/
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
|
2020-07-27 02:54:22 +08:00
|
|
|
RUN apt-get install --no-install-recommends -y git && \
|
2020-07-27 02:42:34 +08:00
|
|
|
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/*
|
2020-07-26 11:01:11 +08:00
|
|
|
|
|
|
|
RUN git clone https://github.com/DarkSecDevelopers/HiddenEye
|
|
|
|
|
|
|
|
WORKDIR /home/HiddenEye/
|
|
|
|
|
|
|
|
RUN pip3 install -r requirements.txt
|