forked from mttu-developers/konabot
9 lines
144 B
Docker
9 lines
144 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt ./
|
|
RUN pip install -r requirements.txt --no-deps
|
|
|
|
COPY . .
|
|
CMD [ "python", "bot.py" ]
|