Обновлен Dockerfile для установки зависимостей из requirements.txt и добавлена поддержка ежедневных заметок в main.py
All checks were successful
Deploy bot / build-deploy (push) Successful in 37s

This commit is contained in:
Dmitry
2025-12-12 10:48:14 +03:00
parent ebae97d6f8
commit 4db65a86ca
2 changed files with 105 additions and 6 deletions

View File

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