Bug fix: Update Docker installation instructions and add docker-compose support

This commit is contained in:
ي
2025-06-10 22:19:46 +00:00
parent bbe56a364d
commit edd03dd199
4 changed files with 51 additions and 41 deletions

View File

@@ -37,7 +37,7 @@ RUN pip install --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# === Start runtime stage ===
FROM python:3.11-slim AS runtime
FROM python:3.12-slim AS runtime
# 7. Install build tools needed for wordcloud
RUN apt-get update && apt-get install -y --no-install-recommends gcc build-essential && rm -rf /var/lib/apt/lists/*