Files
muha-bot/Dockerfile
T
2026-07-10 14:36:35 +03:00

17 lines
228 B
Docker

FROM python:3.13-slim
WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
COPY requirements.txt .
RUN mkdir /app/database
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "bot.py"]