From 19441ad628dd3f3f9ae868b3b25c1b742b0c0c90 Mon Sep 17 00:00:00 2001 From: 030 Date: Sat, 11 Nov 2023 12:10:39 +0100 Subject: [PATCH] fix: [#384] Create groups. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2fb9dd6d..54a46274 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,5 +13,8 @@ FROM alpine:3.18.4 COPY --from=builder /etc/passwd /etc/passwd COPY --from=builder /n3dr /usr/local/bin/n3dr COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ +RUN apk add --no-cache \ + libcrypto3=3.1.4-r0 \ + libssl3=3.1.4-r0 USER n3dr ENTRYPOINT ["/usr/local/bin/n3dr"]