Files
AI_Translator/apps/api/Dockerfile
2025-12-25 18:41:09 +08:00

13 lines
193 B
Docker

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