ssrf-probe / Dockerfile
aaxaxax's picture
init
23f2281
raw
history blame
98 Bytes
FROM python:3.9-slim
RUN pip install flask requests
COPY app.py /app.py
CMD ["python", "/app.py"]