1
0
mirror of https://github.com/MrDetonia/Maki.git synced 2025-01-05 15:58:03 -05:00
Maki/Dockerfile

6 lines
140 B
Docker

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