add Dockerfile and requirements.txt
All checks were successful
Build and Run VSTU Public TG bot / build_and_run (push) Successful in 27s

This commit is contained in:
2026-04-05 22:35:03 +03:00
parent 7f890e927a
commit 8d84931fca

View File

@@ -0,0 +1,6 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "-u", "main.py"]