From 18eeaa579afa3032bb14b094558f457a1ebf046b Mon Sep 17 00:00:00 2001 From: Belisarith Date: Tue, 23 Nov 2021 12:57:16 +0000 Subject: [PATCH] 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"]