Initial commit

This commit is contained in:
2022-04-20 23:41:25 +02:00
commit 0a43da51f1
16 changed files with 2185 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:3.9
ADD . /kaizen-bot
RUN apt-get update -y && \
apt-get install mariadb-client mariadb-server python3-pip -y && \
./kaizen-bot-old/install.sh
CMD ["python", "/kaizen-bot/main.py", "run"]