AnotherLanguageApp / Dockerfile
samu's picture
increasing number of workers
8e70df9
raw
history blame contribute delete
235 Bytes
FROM python:3.12-slim
COPY ./ ./
# Install dependencies
RUN pip install --no-cache --upgrade -r /requirements.txt
# Start the application
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "2"]