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