11 lines
217 B
Text
11 lines
217 B
Text
|
|
FROM python:3.12-slim
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY requirements-web.txt .
|
||
|
|
RUN pip install --no-cache-dir -r requirements-web.txt
|
||
|
|
|
||
|
|
COPY src/ ./src/
|
||
|
|
|
||
|
|
CMD ["gunicorn", "-b", "0.0.0.0:5001", "-w", "2", "src.web.app:create_app()"]
|