mirror of
https://github.com/house-of-vanity/techops_bot.git
synced 2025-07-06 17:34:08 +00:00
7 lines
106 B
Docker
7 lines
106 B
Docker
FROM python:3
|
|
|
|
COPY . /bot
|
|
WORKDIR /bot
|
|
RUN pip install -r requirements.txt
|
|
ENTRYPOINT python /bot/bot.py
|