forked from mttu-developers/konabot
15 lines
254 B
Docker
15 lines
254 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt ./
|
|
RUN pip install -r requirements.txt --no-deps
|
|
|
|
COPY bot.py pyproject.toml ./
|
|
COPY assets ./assets
|
|
COPY scripts ./scripts
|
|
COPY konabot ./konabot
|
|
|
|
ENV PYTHONPATH=/app
|
|
|
|
CMD [ "python", "bot.py" ]
|