Files
2d1251be-816e-424b-9b84-8df…/Dockerfile
2026-07-08 18:01:36 +09:00

13 lines
259 B
Docker

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