This repository has been archived on 2023-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
kaizen-bot-old/Dockerfile
2022-04-20 23:48:59 +02:00

9 lines
210 B
Docker

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"]