Files
techops_bot/Dockerfile

7 lines
106 B
Docker
Raw Permalink Normal View History

2019-11-07 18:10:10 +03:00
FROM python:3
COPY . /bot
WORKDIR /bot
RUN pip install -r requirements.txt
ENTRYPOINT python /bot/bot.py