Files
fastapi-demo/Dockerfile

8 lines
198 B
Docker
Raw Permalink Normal View History

2026-03-19 19:09:34 +09:00
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]