Update Dockerfile

This commit is contained in:
DerrtSML
2025-06-23 16:30:57 +03:00
committed by GitHub
parent 6c4194d0ce
commit c2bd13aae9
+1
View File
@@ -1,6 +1,7 @@
FROM python:3.10-slim-buster
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "bot.py"]