Добавлен файл requirements.txt и обновлен Dockerfile для установки зависимостей через него; добавлен файл pyproject.toml и README.md
All checks were successful
Deploy bot / build-deploy (push) Successful in 32s

This commit is contained in:
Dmitry
2025-11-29 00:03:21 +03:00
parent 6b5098cae5
commit d403395c9d
6 changed files with 199 additions and 3 deletions

View File

@@ -10,6 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
WORKDIR /app
COPY main.py .
RUN pip install --no-cache-dir trilium-py dotenv aiogram
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "main.py"]