From 91e9ec9dd36d081cfebac50902c2906a9d249a85 Mon Sep 17 00:00:00 2001 From: belviskhoremk Date: Mon, 6 Apr 2026 22:30:43 +0000 Subject: [PATCH] updated Dockerfile --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 . .