7dd3d74 2af3d1e 1b983e7 b71b6cb
1
2
3
4
5
6
7
8
9
10
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