From 001bfe372a472db890e1a173fab832b4026208d9 Mon Sep 17 00:00:00 2001 From: Korbs Date: Fri, 17 May 2024 20:49:36 -0400 Subject: [PATCH] Update comments --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ca43107..2b2dfcf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,10 @@ +# Use Debain 12 as the Base FROM debian:12-slim + +# Run as root USER root + +# Start Cron ENTRYPOINT cron start && tail -f /var/log/cron.log # Install nessesary packages @@ -9,5 +14,5 @@ RUN apt-get update && apt-get -y install libcurl4-openssl-dev g++ ca-certificate RUN apt-get -y install -qq --force-yes cron RUN touch /var/log/cron.log -# The user is expected to use "volume" configuration to override the Token +# The server admin(you) is expected to use "volume" configuration to override the Token RUN curl -sSL netweak.sh | bash -s TOKEN_REPLACEMENT \ No newline at end of file