From 80f2d758a4971e92006c3a43da70726c84779742 Mon Sep 17 00:00:00 2001 From: Belisarith Date: Tue, 23 Nov 2021 12:40:17 +0000 Subject: [PATCH 1/2] Correct wrong version of pcre in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cb8de3a..69710eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN \ libconfig-dev \ make \ musl-dev \ - pcre-dev \ + pcre2-dev \ perl && \ cd /sslh && \ make sslh-select && \ From 18eeaa579afa3032bb14b094558f457a1ebf046b Mon Sep 17 00:00:00 2001 From: Belisarith Date: Tue, 23 Nov 2021 12:57:16 +0000 Subject: [PATCH 2/2] additional fix dockerfile, otherwise docker is not runnable --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 69710eb..156075d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN \ libconfig-dev \ make \ musl-dev \ - pcre2-dev \ + pcre2-dev \ perl && \ cd /sslh && \ make sslh-select && \ @@ -18,6 +18,6 @@ FROM alpine:latest COPY --from=build /sslh/sslh-select /sslh -RUN apk --no-cache add libconfig pcre +RUN apk --no-cache add libconfig pcre2 ENTRYPOINT [ "/sslh", "--foreground"]