diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4dd0674 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +FROM debian + +RUN apt update +RUN apt upgrade + +RUN apt install make +RUN apt install cmake +RUN apt install git +RUN apt install wget + +# install the dpp lib +RUN apt install wget +RUN wget -O dpp.deb https://dl.dpp.dev/ +RUN dpkg -i dpp.deb + +RUN git clone https://git.chauvet.pro/starnakin/PyMenuBOT /app + +WORKDIR /app + +RUN make + +ENTRYPOINT ["./PyMenu"] \ No newline at end of file