From 8759ac61af8c62ba20f144a0a76c60cdc79ea6ab Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Sun, 19 Mar 2023 22:41:17 +0100 Subject: [PATCH] Add openssl, offer to query OCSP responder This PR includes two tweaks: * it helps avoiding the bug querying OCSP responder #2329 by adding openssl. The openssl supplied has a mimor DNS lookup problem due to glibc / musl libc compatibilty issues * by adding openssl also it helps a bit for some performance problems related to other projects, see #2314 Also the git binary is removed (#2315). Thanks to @polarathene for the discussions --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 26ee644..fa8f113 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.17 RUN apk update && \ apk upgrade && \ - apk add --no-cache bash procps drill git coreutils libidn curl && \ + apk add --no-cache bash procps drill coreutils libidn curl openssl1.1-compat && \ addgroup testssl && \ adduser -G testssl -g "testssl user" -s /bin/bash -D testssl && \ ln -s /home/testssl/testssl.sh /usr/local/bin/ && \