Spaces:
Build error
Build error
File size: 266 Bytes
7dd3d74 2af3d1e 6af6f40 b71b6cb 6af6f40 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM linuxserver/heimdall
# Use environment variables to control permissions
ENV PUID=1000
ENV PGID=1000
# Modify existing abc user instead of creating new
RUN \
usermod -l newusername abc && \
groupmod -n newgroupname abc && \
usermod -d /app -m newusername |