Files
konabot/Dockerfile

12 lines
197 B
Docker

FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install -r requirements.txt --no-deps
COPY bot.py ./
COPY assets ./
COPY scripts ./
COPY konabot ./
CMD [ "python", "bot.py" ]