We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25700c1 commit 44bdca8Copy full SHA for 44bdca8
Dockerfile.rootless
@@ -67,7 +67,8 @@ ENV HBOX_STORAGE_SQLITE_URL=/data/homebox.db?_pragma=busy_timeout=2000&_pragma=j
67
68
# Install necessary runtime dependencies
69
RUN apk --no-cache add ca-certificates wget
70
-RUN addgroup -S nonroot && adduser -S nonroot -G nonroot
+# Create a nonroot user with UID/GID 65532
71
+RUN addgroup -g 65532 nonroot && adduser -u 65532 -G nonroot -S nonroot
72
73
# Create application directory and copy over built Go binary
74
RUN mkdir /app
0 commit comments