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](https://github.com/kamailio/kamailio/assets/161492387/42017f48-3a7f-4cbe-bdf0-48dbb3443f5f)

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 -j`nproc` 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 or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3825
You are receiving this because you are subscribed to this thread.

Message ID: <kamailio/kamailio/issues/3...@github.com>
_______________________________________________
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org

Reply via email to