From 349cb03844b3e135ef259c2be81cba6929ad0b62 Mon Sep 17 00:00:00 2001 From: starnakin Date: Sat, 7 Oct 2023 23:21:50 +0000 Subject: [PATCH] init: dockerfile --- Dockerfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Dockerfile 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