From 61b9bd8cfed37253f7d42c32606b3c51c0276b3d Mon Sep 17 00:00:00 2001 From: "Andrey K. Choi" Date: Fri, 5 Sep 2025 17:50:25 +0900 Subject: [PATCH] tmp commit --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ab60e48..db1839b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM python:3.11-slim WORKDIR /app COPY . /app -RUN pip install --no-cache-dir python-telegram-bot sqlalchemy python-dotenv +COPY requirements.txt /app/requirements.txt +RUN pip install --no-cache-dir -r requirements.txt CMD ["python", "main.py"]