wkampich left a comment (kamailio/kamailio#4264)

I had the same problem in another project - a workaround is to compile libjwt 
version 1.17.2 and copy it manually :

```
FROM alpine:3.18.12 as build

RUN apk add --no-cache git gcc musl-dev make automake autoconf libtool 
jansson-dev openssl-dev yaml-dev curl-dev

WORKDIR /tmp/

RUN git clone -b 'v1.17.2' --single-branch 
https://github.com/benmcollins/libjwt.git

RUN cd libjwt && \
    aclocal && \
    autoreconf -i && \
    ./configure --without-gnutls && \
    make all && \
    make install

# ...

FROM alpine:3.18.12

RUN apk add --no-cache openssl yaml curl jansson

COPY --from=build /usr/local/lib/libjwt.* /usr/local/lib/


```


-- 
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4264#issuecomment-2971557108
You are receiving this because you are subscribed to this thread.

Message ID: <kamailio/kamailio/issues/4264/2971557...@github.com>
_______________________________________________
Kamailio - Development Mailing List -- sr-dev@lists.kamailio.org
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org
Important: keep the mailing list in the recipients, do not reply only to the 
sender!

Reply via email to