diff --git a/Dockerfile b/Dockerfile index 070366a..84a73ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,12 @@ FROM python:3.12-alpine WORKDIR /app -COPY pyproject.toml . -COPY requirements.txt . +# Install system dependencies +RUN apt-get update && apt-get install -y \ + gcc uv -RUN pip install -r requirements.txt +COPY pyproject.toml . +RUN uv init COPY . .