updated Dockerfile

This commit is contained in:
belviskhoremk
2026-04-06 22:37:41 +00:00
parent 109f62eb58
commit 9ef40c8995

View File

@@ -2,10 +2,15 @@ FROM python:3.12-alpine
WORKDIR /app WORKDIR /app
# Install system dependencies # Install ALL required build tools
RUN apk add --no-cache gcc musl-dev python3-dev RUN apk add --no-cache \
gcc \
g++ \
musl-dev \
python3-dev \
cmake \
make
# Install uv via pip (since it's not an Alpine package)
RUN pip install uv RUN pip install uv
COPY pyproject.toml . COPY pyproject.toml .