From e5267d3e90c0539e59e4efdf394c433df40d35ea Mon Sep 17 00:00:00 2001 From: prodream Date: Mon, 6 Oct 2025 19:14:07 +0400 Subject: [PATCH] refactor: added curl installation in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d7f8268..d2c9b0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM python:3.13.7-slim # Use the official lightweight Python 3.13.7 image as the base. RUN apt-get update \ - && apt-get install -y --no-install-recommends make \ + && apt-get install -y --no-install-recommends make curl \ && rm -rf /var/lib/apt/lists/* -# Update package lists, install `make`, +# Update package lists, install `make` and `curl`, # and remove cached apt data to keep the image small. COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/