From f2a59d6b22e0547d8999024f226cc60bf54f4dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sindri=20Gu=C3=B0mundsson?= Date: Wed, 7 Oct 2020 13:40:24 +0000 Subject: [PATCH] Install openssl Since the docker-entrypoint.sh attempts to create a cert, we need to have openssl installed --- stunnel/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stunnel/Dockerfile b/stunnel/Dockerfile index 76eeaf69b..6d1237b4e 100644 --- a/stunnel/Dockerfile +++ b/stunnel/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3 MAINTAINER EasyPi Software Foundation -RUN apk add --no-cache stunnel libressl +RUN apk add --no-cache stunnel libressl openssl COPY docker-entrypoint.sh /entrypoint.sh