chore: разделить зависимости, добавить PYTHONUNBUFFERED в Dockerfile

This commit is contained in:
deadzilla 2026-06-11 22:52:54 +05:00
parent b752505177
commit 4ebaebee1c
3 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
ARG PYTHON_VERSION=3.14
FROM python:${PYTHON_VERSION}-slim
ENV PYTHONUNBUFFERED=1
WORKDIR /app
# Устанавливаем зависимости и утилиту ps для healthcheck

2
requirements-dev.txt Normal file
View File

@ -0,0 +1,2 @@
pytest>=7.4.0
pytest-asyncio>=0.21.0

View File

@ -1,5 +1,3 @@
discord.py>=2.3.2
python-dotenv>=1.0.0
requests>=2.31.0
pytest>=7.4.0
pytest-asyncio>=0.21.0