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.

This commit is contained in:
Vylyne 2025-10-01 13:38:19 -04:00
parent 6c79d28329
commit ce1540e781

View File

@ -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 \