From 22f2587aeef3c2a2ae6be7df5a0e4b55544f1cc6 Mon Sep 17 00:00:00 2001 From: inubimambo Date: Sat, 12 Jul 2025 14:04:51 +0800 Subject: [PATCH] Update dockerfile instead of pyproject.toml because lazy --- Dockerfile | 3 +++ pyproject.toml | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f8cea57..4ba9af5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,9 @@ WORKDIR /app # Install Poetry RUN pip install poetry +# Install additional packages +RUN pip install markdown + # Copy project files COPY pyproject.toml poetry.lock README.md ./ COPY main.py . diff --git a/pyproject.toml b/pyproject.toml index b167db7..c56aa2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,8 +10,7 @@ requires-python = ">=3.13" dependencies = [ "python-telegram-bot (>=21.10,<22.0)", "flowise (>=1.0.4,<2.0.0)", - "python-dotenv (>=1.0.1,<2.0.0)", - "markdown (>=3.4.0,<4.0.0)" + "python-dotenv (>=1.0.1,<2.0.0)" ]