Skip to content

Commit 8759ac6

Browse files
committed
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
1 parent 30022ea commit 8759ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:3.17
22

33
RUN apk update && \
44
apk upgrade && \
5-
apk add --no-cache bash procps drill git coreutils libidn curl && \
5+
apk add --no-cache bash procps drill coreutils libidn curl openssl1.1-compat && \
66
addgroup testssl && \
77
adduser -G testssl -g "testssl user" -s /bin/bash -D testssl && \
88
ln -s /home/testssl/testssl.sh /usr/local/bin/ && \

0 commit comments

Comments
 (0)