6 lines
221 B
Docker
6 lines
221 B
Docker
FROM python:3.14-slim
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN pip install -r requirements.txt
|
|
EXPOSE 5000
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app", "--log-level", "info", "--capture-output", "--enable-stdio-inheritance"] |