Docker Debian based Images with dependences installed ready to be used to build Kamailio from sources
You need the kamailio sources at src so get them:
git clone https://github.com/kamailio/kamailio.git src
or refresh them:
make pull
and just
make
for instance:
export DIST=stretch VERSION=dev
cd ${DIST}; docker build --tag=pkg-kamailio-docker:${VERSION}-${DIST} .
or pull the image from docker hub
docker pull kamailio/pkg-kamailio-docker:${VERSION}-${DIST}
docker run -i -t --rm -v src:/code:rw kamailio/pkg-kamailio-docker:${VESION}-${DIST} /bin/bash