08d5f5f
|
|
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PORT=7860
EXPOSE 7860
CMD ["gunicorn","-w","2","-k","gthread","-b","0.0.0.0:7860","app:app","--timeout","120","--threads","4"]
|