Spaces:
Runtime error
Runtime error
File size: 298 Bytes
b9f3458 00ac22e b9f3458 00ac22e b9f3458 00ac22e b9f3458 dc14db6 b9f3458 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -U pip wheel && pip install -r requirements.txt
COPY . .
ENV PORT=7860
EXPOSE 7860
# Use sh -c so $PORT expands; falls back to 7860 if not set
CMD ["sh","-c","gunicorn -w 2 -k gthread -b 0.0.0.0:${PORT:-7860} app:app"]
|