mirror of
https://github.com/azaion/detections.git
synced 2026-04-22 22:56:31 +00:00
86d8e7e22d
Made-with: Cursor
7 lines
188 B
Docker
7 lines
188 B
Docker
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
RUN pip install --no-cache-dir flask gunicorn
|
|
COPY app.py .
|
|
EXPOSE 8081
|
|
CMD ["gunicorn", "-b", "0.0.0.0:8081", "-w", "1", "--timeout", "120", "app:app"]
|