We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 069bccd commit 2d96b16Copy full SHA for 2d96b16
1 file changed
tlsnotary/Dockerfile.proxy
@@ -16,10 +16,14 @@ RUN cargo install wstcp
16
# ── Runtime ──────────────────────────────────────────────────────────────────
17
FROM alpine:3.20
18
19
-RUN apk add --no-cache ca-certificates
+RUN apk add --no-cache ca-certificates \
20
+ && addgroup -S wstcp \
21
+ && adduser -S -G wstcp wstcp
22
23
COPY --from=builder /usr/local/cargo/bin/wstcp /usr/local/bin/wstcp
24
25
+USER wstcp
26
+
27
EXPOSE 55688
28
29
# First arg after the image is the TCP target (e.g. notary:7047).
0 commit comments