Merge pull request #328 from jerome992/master

fixed docker compilation error
This commit is contained in:
Yves Rutschle 2022-04-10 16:24:50 +02:00 committed by GitHub
commit 43bd660df2
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"]