diff --git a/Dockerfile b/Dockerfile index 20f86e7..f06887e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,4 +10,7 @@ RUN apk add --no-cache gettext COPY auth.conf auth.htpasswd launch.sh ./ +# make sure root login is disabled +RUN sed -i -e 's/^root::/root:!:/' /etc/shadow + CMD ["./launch.sh"]