mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-26 19:54:53 +02:00
19 lines
373 B
Docker
19 lines
373 B
Docker
FROM python:3
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt update -y && apt install -y \
|
|
build-essential \
|
|
chromium \
|
|
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
|
|
RUN chmod +x /app/tools/get_dirs.sh
|