Fix: Add curl to apt-get install for healthcheck

This commit is contained in:
2026-02-21 01:32:14 +00:00
parent 0ce01e95a1
commit f1c1dbb926

View File

@@ -15,6 +15,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
curl \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching