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"]