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 6f200bd commit 17c70a4Copy full SHA for 17c70a4
Dockerfile
@@ -30,9 +30,8 @@ RUN CGO_ENABLED=0 go build \
30
FROM alpine:3.17
31
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
32
COPY --from=builder /app/bin/kminion /app/kminion
33
-RUN addgroup -S redpanda \
34
- && adduser -S redpanda -G redpanda \
35
- && chmod o+rx /app/kminion
36
-USER redpanda
+RUN chown -R 1001:0 /app/kminion \
+ && chmod -R g=u /app/kminion
+USER 1001
37
38
ENTRYPOINT ["/app/kminion"]
0 commit comments