i use this with caprover so i can run this with docker NOTE :- change wget url as reuired for amd or arm server ``` FROM alpine:latest # Install dependencies RUN apk update && apk add --no-cache wget # Download script RUN wget https://github.com/layou233/NeverIdle/releases/download/0.1/NeverIdle-linux-arm64 -O /usr/local/bin/NeverIdle # Change file permission RUN chmod 777 /usr/local/bin/NeverIdle # Run the script with default arguments CMD ["/bin/sh", "-c", "/usr/local/bin/NeverIdle -c 2h -m 2 -n 4h"] ```