docker files change user id and group id
All checks were successful
/ build-docker-image (push) Successful in 28s

This commit is contained in:
2025-09-14 00:07:55 +01:00
parent b02ffb7021
commit aff6f9e344

View File

@@ -12,7 +12,8 @@ RUN chmod +x /app/scripts -R
RUN ln -s /app/scripts/loadenv /usr/local/bin/loadenv
RUN ln -s /app/scripts/remote-connect /usr/local/bin/remote-connect
RUN ln -s /app/scripts/remote-connect /usr/local/bin/remote-get-folder-size
RUN addgroup -S borg && adduser -S borg -G borg
RUN addgroup -g 1001 -S borg && adduser -u 1001 -S borg -G borg
USER borg
WORKDIR /home/borg