heimdall / Dockerfile
rm-dev-null's picture
Update Dockerfile
1b983e7 verified
raw
history blame
229 Bytes
FROM linuxserver/heimdall
# Create custom user (matching PUID/PGID)
RUN groupadd -g 1000 user && \
useradd -u 1000 -g user -d /app user && \
usermod -a -G abc user
# Set environment variables
ENV PUID=1000
ENV PGID=1000