fixed docker compilation error

This commit is contained in:
Jerome 2022-04-09 22:09:40 +02:00
parent 07ceb99280
commit 32b065d895

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