1
0
mirror of https://github.com/MrDetonia/Maki.git synced 2024-09-21 03:09:16 -04:00
Maki/Dockerfile

6 lines
140 B
Docker
Raw Normal View History

FROM python:3.5-alpine
WORKDIR /maki
COPY ["requirements.txt", "*.py", "./"]
RUN pip install -r requirements.txt
CMD ["python", "./bot.py"]