Files
VSTU_Public_TG_Bot/Dockerfile
FazziCLAY 8d84931fca
All checks were successful
Build and Run VSTU Public TG bot / build_and_run (push) Successful in 27s
add Dockerfile and requirements.txt
2026-04-05 22:35:03 +03:00

6 lines
194 B
Docker

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