updated Dockerfile

This commit is contained in:
belviskhoremk
2026-04-06 22:32:29 +00:00
parent 91e9ec9dd3
commit 69a31094c5

View File

@@ -3,8 +3,10 @@ FROM python:3.12-alpine
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc uv
RUN apk add --no-cache gcc musl-dev python3-dev
# Install uv via pip (since it's not an Alpine package)
RUN pip install uv
COPY pyproject.toml .
RUN uv init