diff --git a/nosleep-oracle/Dockerfile b/nosleep-oracle/Dockerfile new file mode 100644 index 0000000..bfbc2dc --- /dev/null +++ b/nosleep-oracle/Dockerfile @@ -0,0 +1,13 @@ +FROM ubuntu + +RUN apt update && apt upgrade -y && apt install wget -y + +RUN wget https://github.com/layou233/NeverIdle/releases/download/0.2.3/NeverIdle-linux-arm64 -O NeverIdle + +RUN chmod 777 NeverIdle + +COPY . . + +RUN chmod +x test.sh + +ENTRYPOINT ./test.sh