pc1be / Dockerfile
axvg's picture
add dockerfile
78ebad8 verified
raw
history blame contribute delete
181 Bytes
FROM python:3.13-slim
WORKDIR /app
COPY pyproject.toml .
RUN pip install .
COPY . .
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]