Merge pull request #311 from Belisarith/master

Correct wrong version of pcre in Dockerfile
This commit is contained in:
Yves Rutschle 2021-11-25 11:02:40 +01:00 committed by GitHub
commit 4e72800f2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"]