partital fix

This commit is contained in:
2025-08-26 13:10:12 -07:00
parent 6f6dccfa7d
commit 984f28a7c2
6 changed files with 269 additions and 148 deletions

View File

@@ -6,6 +6,11 @@ RUN pip install --no-cache-dir -r requirements.txt
# Final stage
FROM python:3.12-slim
# Install curl
RUN apt-get update && apt-get install -y --no-install-recommends curl \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Copy dependencies from builder stage