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
RUN pip install poetry
# Install additional packages
RUN pip install markdown
# Copy project files
COPY pyproject.toml poetry.lock README.md ./
COPY main.py .