switch to python slim image

This commit is contained in:
2026-06-29 13:19:48 +05:30
parent e0cd0bba6e
commit 714d185846

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
FROM python:3.14-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
WORKDIR /app
COPY pyproject.toml uv.lock ./
RUN uv sync --frozen --no-cache
COPY . .
ENV PATH="/app/.venv/bin:$PATH"
EXPOSE 3000
CMD ["uvicorn", "app.app:app", "--host", "0.0.0.0", "--port", "3000"]