docker-recon / Dockerfile
dia2diab's picture
docker recon space
3550dc5
raw
history blame contribute delete
216 Bytes
FROM python:3.11-slim
RUN apt-get update && apt-get install -y curl dnsutils net-tools iproute2 nmap && rm -rf /var/lib/apt/lists/*
RUN pip install flask
COPY app.py /app.py
EXPOSE 7860
CMD ["python", "/app.py"]