From ce1540e78116453574c77cf23309dd93315e7850 Mon Sep 17 00:00:00 2001 From: Vylyne <94922829+Vylyne@users.noreply.github.com> Date: Wed, 1 Oct 2025 13:38:19 -0400 Subject: [PATCH] reverted default IDs to 1000 which is what the node user is created as. Though this default for the container was root. Figured 1000 is a safer default then root and will fit most basic user setups. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 02dac36b2..d55d565b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,8 +45,8 @@ FROM node:20-alpine ARG NUSQLITE3_DIR ARG NUSQLITE3_PATH -ARG PUID=5000 -ARG PGID=5000 +ARG PUID=1000 +ARG PGID=1000 # Install only runtime dependencies RUN apk add --no-cache --update \