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