File size: 228 Bytes
ec71f25 c7b1ae2 a99b7f4 aa5a346 60eeb4d f620980 a99b7f4 933a887 a99b7f4 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["gunicorn", "-w", "4", "-k", "uvicorn.workers.UvicornWorker", "main:app", "--bind", "0.0.0.0:8001"] |