mirror of
https://github.com/MrDetonia/Maki.git
synced 2024-11-21 19:44:14 -05:00
12 lines
191 B
Docker
12 lines
191 B
Docker
FROM python:3.5-alpine
|
|
|
|
# copy files
|
|
WORKDIR /maki
|
|
COPY ["requirements.txt", "*.py", "./"]
|
|
|
|
# install dependencies
|
|
RUN pip install -r requirements.txt
|
|
|
|
# start bot
|
|
CMD ["python", "./bot.py"]
|