dumant/app/Dockerfile

10 lines
169 B
Docker
Raw Normal View History

2025-07-13 09:46:56 -07:00
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"]