Files
rengine/Dockerfile
T
2020-05-24 12:18:32 +05:30

18 lines
324 B
Docker

FROM ubuntu:20.04
RUN apt update -y && apt install -y \
build-essential \
python3.8 \
python3-dev \
python3-pip \
wget \
libpq-dev \
nmap
COPY ./requirements.txt /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt
RUN mkdir /app
WORKDIR /app
COPY . /app/
RUN chmod +x /app/tools/get_subdomain.sh