chore(Dockerfile): add curl installation to backend Dockerfile

This commit is contained in:
sharath 2025-06-30 17:41:32 +00:00
parent bcdffebcdf
commit 9871841baa
No known key found for this signature in database
1 changed files with 2 additions and 0 deletions

View File

@ -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