HiddenEye-Legacy/Docker/Dockerfile

26 lines
547 B
Docker
Raw Normal View History

2020-07-27 06:14:24 +08:00
FROM python:3.7 as builder
WORKDIR /home/
RUN git clone https://github.com/DarkSecDevelopers/HiddenEye
FROM debian:10
2020-07-26 11:03:07 +08:00
LABEL maintaner="Equinockx moisestapia741@gmail.com"
WORKDIR /home/
RUN apt-get update
2020-07-27 06:14:24 +08:00
RUN apt-get install --no-install-recommends -y python3.7 && \
2020-07-27 02:42:34 +08:00
apt-get install -y python3-pip && \
2020-07-27 03:37:55 +08:00
apt-get install --no-install-recommends -y php
RUN apt-get update && \
2020-07-27 03:07:04 +08:00
apt-get clean && \
2020-07-27 02:42:34 +08:00
rm -rf /var/lib/apt/lists/*
WORKDIR /home/HiddenEye/
2020-07-27 06:14:24 +08:00
COPY --from=builder /home/HiddenEye/ .
RUN pip3 install -r requirements.txt