New Updates over files

This commit is contained in:
MoisesTapia 2020-07-26 17:14:24 -05:00
parent f16308d2d3
commit 6edca401f5
No known key found for this signature in database
GPG Key ID: BE22111DAB113FC3
2 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,9 @@
FROM python:3.7 as builder
WORKDIR /home/
RUN git clone https://github.com/DarkSecDevelopers/HiddenEye
FROM debian:10
LABEL maintaner="Equinockx moisestapia741@gmail.com"
@ -5,8 +11,7 @@ WORKDIR /home/
RUN apt-get update
RUN apt-get install -y --no-install-recommends git && \
apt-get install --no-install-recommends -y python3.7 && \
RUN apt-get install --no-install-recommends -y python3.7 && \
apt-get install -y python3-pip && \
apt-get install --no-install-recommends -y php
@ -14,8 +19,8 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/DarkSecDevelopers/HiddenEye
WORKDIR /home/HiddenEye/
COPY --from=builder /home/HiddenEye/ .
RUN pip3 install -r requirements.txt

View File

@ -14,7 +14,7 @@ services:
stdin_open: true
tty: true
volumes:
- $PWD/WebPages:/home/HiddenEye/WebPages
- $PWD/../WebPages:/home/HiddenEye/WebPages
networks:
- internet
restart: always