From 32b065d895dd7fbaf8c0f68c44dd1a4fc0dc3b83 Mon Sep 17 00:00:00 2001 From: Jerome Date: Sat, 9 Apr 2022 22:09:40 +0200 Subject: [PATCH] fixed docker compilation error --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cb8de3a..487fe7f 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 && \ @@ -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"]