From de2400cdf20f908b77389dd4f61af6c43569f69b Mon Sep 17 00:00:00 2001 From: starnakin Date: Tue, 10 Oct 2023 13:43:47 +0000 Subject: [PATCH] add: dockerfile --- Dockerfile | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4dd0674..797d41a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,18 @@ FROM debian RUN apt update -RUN apt upgrade +RUN yes y | apt upgrade RUN apt install make -RUN apt install cmake -RUN apt install git -RUN apt install wget +RUN yes y | apt install git +RUN yes | apt install wget +RUN yes y | apt install g++ # install the dpp lib -RUN apt install wget +RUN yes y | apt install cmake +RUN yes y | apt install wget +RUN yes y | apt install libsodium23 +RUN yes y | apt install libopus0 RUN wget -O dpp.deb https://dl.dpp.dev/ RUN dpkg -i dpp.deb @@ -19,4 +22,6 @@ WORKDIR /app RUN make +COPY src/config.h src/config.h + ENTRYPOINT ["./PyMenu"] \ No newline at end of file