Spaces:
Build error
Build error
File size: 277 Bytes
8cde659 1f5587e 8cde659 | 1 2 3 4 5 6 7 8 9 10 11 | FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
# Gunicorn ile çalıştır
CMD ["gunicorn", "app:app", "--workers", "2", "--worker-class", "uvicorn.workers.UvicornWorker", "--bind", "0.0.0.0:7860"] |