diff --git a/Dockerfile b/Dockerfile index 267ca5e..60fc214 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,9 @@ FROM python:3.12-alpine WORKDIR /app COPY pyproject.toml . -RUN uv init +COPY requirements.txt . + +RUN uv pip install -r requirements.txt COPY . .