diff --git a/Dockerfile b/Dockerfile index 75dbdb4..f1f8852 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ FROM python:3.12-slim +# Устанавливаем curl +RUN apt-get update && apt-get install -y curl \ + && rm -rf /var/lib/apt/lists/* + # Download and install uv ADD https://astral.sh/uv/install.sh /uv-installer.sh RUN sh /uv-installer.sh && rm /uv-installer.sh