We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23ae2cc commit 10ebc35Copy full SHA for 10ebc35
2 files changed
botfest/build.gradle.kts
@@ -87,8 +87,8 @@ docker {
87
88
from("eclipse-temurin:24-jre-alpine")
89
90
- runShell("addgroup -S bot")
91
- runShell("adduser -S bot -G bot")
+ runShell("addgroup --gid 1001 -S bot")
+ runShell("adduser --uid 101 -S bot -G bot")
92
user("bot")
93
94
workdir("/bot")
platform_api/build.gradle.kts
@@ -109,8 +109,8 @@ docker {
109
110
runShell("apk add --no-cache git")
111
112
- runShell("addgroup -S platform")
113
- runShell("adduser -S platform -G platform")
+ runShell("addgroup --gid 1001 -S platform")
+ runShell("adduser --uid 1001 -S platform -G platform")
114
runShell("mkdir -p /app")
115
runShell("chown platform /app")
116
0 commit comments