init: dockerfile
This commit is contained in:
parent
df5f8c3227
commit
349cb03844
22
Dockerfile
Normal file
22
Dockerfile
Normal file
@ -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"]
|
Loading…
Reference in New Issue
Block a user