From ff7fc0bbfba060d35e9311c0f2ab9e10d90f373e Mon Sep 17 00:00:00 2001 From: Cizz22 Date: Thu, 14 Aug 2025 16:37:48 +0700 Subject: [PATCH] fix --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 638ac00..b4015ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,9 +25,10 @@ FROM python:3.13-slim as runtime # Install necessary tools for running the app, including `make` RUN apt-get update && apt-get install -y --no-install-recommends \ make \ + python3-tk \ + tk-dev \ && rm -rf /var/lib/apt/lists/* - # Set environment variables for Poetry ENV POETRY_VIRTUALENVS_IN_PROJECT=1 \ PATH="/app/.venv/bin:$PATH"