docker dependencies

This commit is contained in:
Krishav Raj Singh 2025-09-27 04:11:53 +05:30
parent f229fc0320
commit 3470d34c01
1 changed files with 6 additions and 1 deletions

View File

@ -3,7 +3,12 @@ FROM ghcr.io/astral-sh/uv:python3.11-alpine
ENV ENV_MODE production
WORKDIR /app
RUN apk add --no-cache curl git
RUN apk add --no-cache curl git \
# Dependencies for Python package compilation
freetype-dev \
gcc \
musl-dev \
python3-dev
# Install Python dependencies
COPY pyproject.toml uv.lock ./