Ensemble_threshold_MG / Dockerfile
Vo Nhu Tu Anh
Upload 6 files
d76c0bc verified
Raw
History Blame Contribute Delete
399 Bytes
FROM python:3.11-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
EXPOSE 7860
# --timeout 120: first request lazily loads BOTH transformer members into RAM,
# which can exceed gunicorn's default 30s worker timeout on free CPU hardware.
CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "120", "app:app"]