dumant/app/Dockerfile
2025-07-13 09:46:56 -07:00

9 lines
169 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]