fix: add python3-tk to Docker image for tkinter dependency

This commit is contained in:
2026-05-14 01:25:06 +08:00
parent d299db0ab2
commit d0a1c3dce5
+2 -1
View File
@@ -2,9 +2,10 @@ FROM python:3.11-slim
WORKDIR /app WORKDIR /app
# Install system dependencies # Install system dependencies (tkinter needed by app/core processing)
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \ gcc \
python3-tk \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Install Python dependencies # Install Python dependencies