Update dockerfile instead of pyproject.toml because lazy

This commit is contained in:
inubimambo
2025-07-12 14:04:51 +08:00
parent 3c1653a3a3
commit 22f2587aee
2 changed files with 4 additions and 2 deletions

View File

@@ -6,6 +6,9 @@ WORKDIR /app
# Install Poetry # Install Poetry
RUN pip install poetry RUN pip install poetry
# Install additional packages
RUN pip install markdown
# Copy project files # Copy project files
COPY pyproject.toml poetry.lock README.md ./ COPY pyproject.toml poetry.lock README.md ./
COPY main.py . COPY main.py .

View File

@@ -10,8 +10,7 @@ requires-python = ">=3.13"
dependencies = [ dependencies = [
"python-telegram-bot (>=21.10,<22.0)", "python-telegram-bot (>=21.10,<22.0)",
"flowise (>=1.0.4,<2.0.0)", "flowise (>=1.0.4,<2.0.0)",
"python-dotenv (>=1.0.1,<2.0.0)", "python-dotenv (>=1.0.1,<2.0.0)"
"markdown (>=3.4.0,<4.0.0)"
] ]