This commit is contained in:
Alex55 2026-03-27 15:25:15 +02:00
parent a316dc5e1f
commit ec2f8ee040
1 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,9 @@
FROM python:3.12-slim 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 # Download and install uv
ADD https://astral.sh/uv/install.sh /uv-installer.sh ADD https://astral.sh/uv/install.sh /uv-installer.sh
RUN sh /uv-installer.sh && rm /uv-installer.sh RUN sh /uv-installer.sh && rm /uv-installer.sh