mirror of
https://github.com/MrDetonia/Maki.git
synced 2024-11-22 11:54:16 -05:00
6 lines
140 B
Docker
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"]
|