Add Docker files to build a Kamailio base image
This commit is contained in:
		
							
								
								
									
										49
									
								
								ims_base/Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										49
									
								
								ims_base/Dockerfile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,49 @@
 | 
				
			|||||||
 | 
					# BSD 2-Clause License
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Copyright (c) 2020, Supreeth Herle
 | 
				
			||||||
 | 
					# All rights reserved.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Redistribution and use in source and binary forms, with or without
 | 
				
			||||||
 | 
					# modification, are permitted provided that the following conditions are met:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# 1. Redistributions of source code must retain the above copyright notice, this
 | 
				
			||||||
 | 
					#    list of conditions and the following disclaimer.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# 2. Redistributions in binary form must reproduce the above copyright notice,
 | 
				
			||||||
 | 
					#    this list of conditions and the following disclaimer in the documentation
 | 
				
			||||||
 | 
					#    and/or other materials provided with the distribution.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 | 
				
			||||||
 | 
					# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 | 
				
			||||||
 | 
					# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 | 
				
			||||||
 | 
					# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 | 
				
			||||||
 | 
					# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 | 
				
			||||||
 | 
					# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 | 
				
			||||||
 | 
					# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 | 
				
			||||||
 | 
					# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 | 
				
			||||||
 | 
					# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 | 
				
			||||||
 | 
					# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					FROM ubuntu:bionic
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					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 libpcre3-dev bash-completion g++ autoconf libmnl-dev \
 | 
				
			||||||
 | 
										libsctp-dev ipsec-tools libradcli-dev libradcli4 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/herlesupreeth/kamailio
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# 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 Q=0 all | tee make_all.txt && \
 | 
				
			||||||
 | 
						make install | tee make_install.txt && \
 | 
				
			||||||
 | 
						ldconfig
 | 
				
			||||||
							
								
								
									
										24
									
								
								ims_base/modules.lst
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								ims_base/modules.lst
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
				
			|||||||
 | 
					# this file is autogenerated by make modules-cfg
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# the list of sub-directories with modules
 | 
				
			||||||
 | 
					modules_dirs:=modules
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# the list of module groups to compile
 | 
				
			||||||
 | 
					cfg_group_include=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# the list of extra modules to compile
 | 
				
			||||||
 | 
					include_modules= cdp cdp_avp db_mysql dialplan ims_auth ims_charging ims_dialog ims_diameter_server ims_icscf ims_ipsec_pcscf ims_isc ims_ocs ims_qos ims_registrar_pcscf ims_registrar_scscf ims_usrloc_pcscf ims_usrloc_scscf outbound presence presence_conference presence_dialoginfo presence_mwi presence_profile presence_reginfo presence_xml pua pua_bla pua_dialoginfo pua_reginfo pua_rpc pua_usrloc pua_xmpp sctp tls utils xcap_client xcap_server xmlops xmlrpc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# the list of static modules
 | 
				
			||||||
 | 
					static_modules=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# the list of modules to skip from compile list
 | 
				
			||||||
 | 
					skip_modules=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# the list of modules to exclude from compile list
 | 
				
			||||||
 | 
					exclude_modules= acc_json acc_radius app_java app_lua app_lua_sr app_mono app_perl app_python app_python3 app_ruby auth_ephemeral auth_identity auth_radius cnxcc cplc crypto db2_ldap db_berkeley db_cassandra db_mongodb db_oracle db_perlvdb db_postgres db_redis db_sqlite db_unixodbc dnssec erlang evapi geoip geoip2 gzcompress h350 http_async_client http_client jansson janssonrpcc json jsonrpcc kafka kazoo lcr ldap log_systemd lost memcached misc_radius ndb_cassandra ndb_mongodb ndb_redis nsq osp peering phonenum pua_json rabbitmq regex rls rtp_media_server snmpstats systemdops topos_redis uuid websocket xhttp_pi xmpp $(skip_modules)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					modules_all= $(filter-out modules/CVS,$(wildcard modules/*))
 | 
				
			||||||
 | 
					modules_noinc= $(filter-out $(addprefix modules/, $(exclude_modules) $(static_modules)), $(modules_all)) 
 | 
				
			||||||
 | 
					modules= $(filter-out $(modules_noinc), $(addprefix modules/, $(include_modules) )) $(modules_noinc) 
 | 
				
			||||||
 | 
					modules_configured:=1
 | 
				
			||||||
		Reference in New Issue
	
	Block a user