From 9871841baaf5c68bbd867cb403550f46d7721dd0 Mon Sep 17 00:00:00 2001 From: sharath <29162020+tnfssc@users.noreply.github.com> Date: Mon, 30 Jun 2025 17:41:32 +0000 Subject: [PATCH] chore(Dockerfile): add curl installation to backend Dockerfile --- backend/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index 71c030bf..c0ec7ee8 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -3,6 +3,8 @@ FROM ghcr.io/astral-sh/uv:python3.11-alpine ENV ENV_MODE production WORKDIR /app +RUN apk add --no-cache curl + # Install Python dependencies COPY pyproject.toml uv.lock ./ ENV UV_LINK_MODE=copy