22 lines
345 B
Docker
22 lines
345 B
Docker
|
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"]
|