I am using this docker file for installaing kamailio. I wana use it with open5gs for trynig VoNR , I used before it for VoLTE it works but right now I have this error in installation process.

log.PNG (view on web)

and there is docker file that Im using:

FROM ubuntu:focal

ENV DEBIAN_FRONTEND=noninteractive

Install updates and dependencies

RUN apt-get update &&
apt-get -y install mysql-server tcpdump screen tmux ntp ntpdate git-core dkms
gcc flex bison libmysqlclient-dev make libssl-dev libcurl4-openssl-dev
libxml2-dev libpcre2-dev bash-completion g++ autoconf libmnl-dev
libsctp-dev libradcli-dev libradcli4 libjson-c-dev pkg-config iproute2 net-tools
iputils-ping

Fetch Kamailio code (branch 5.3)

RUN mkdir -p /usr/local/src/ && cd /usr/local/src/ &&
git clone https://github.com/kamailio/kamailio &&
cd kamailio && git checkout 5.8

Build and Install Kamailio

RUN cd /usr/local/src/kamailio && make cfg
COPY modules.lst /usr/local/src/kamailio/src
RUN cd /usr/local/src/kamailio &&
make -jnproc Q=0 all | tee make_all.txt &&
make install | tee make_install.txt &&
ldconfig

COPY kamailio_init.sh /
CMD /kamailio_init.sh


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <kamailio/kamailio/issues/3825@github.com>