2020-05-14 15:21:21 +02:00
|
|
|
FROM debian:buster-slim
|
|
|
|
|
|
|
|
# add freeswitch repo
|
|
|
|
RUN apt-get update && \
|
2020-05-15 18:44:19 +02:00
|
|
|
apt-get install -y --no-install-recommends subversion curl wget ca-certificates gnupg gnupg2 lsb-release && \
|
2020-05-14 15:21:21 +02:00
|
|
|
curl -k https://files.freeswitch.org/repo/deb/debian-release/fsstretch-archive-keyring.asc | apt-key add - && \
|
2020-05-15 18:44:19 +02:00
|
|
|
echo 'deb http://files.freeswitch.org/repo/deb/debian-release/ buster main' > /etc/apt/sources.list.d/freeswitch.list
|
2020-05-14 15:21:21 +02:00
|
|
|
|
|
|
|
# install dockerize
|
|
|
|
ENV DOCKERIZE_VERSION v0.6.1
|
|
|
|
RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
|
|
|
|
&& tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
|
|
|
|
&& rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
|
|
|
|
|
|
|
|
# install freeswitch
|
2020-05-15 18:44:19 +02:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2020-05-14 15:21:21 +02:00
|
|
|
freeswitch \
|
|
|
|
freeswitch-mod-amr \
|
|
|
|
freeswitch-mod-b64 \
|
|
|
|
freeswitch-mod-commands \
|
|
|
|
freeswitch-mod-conference \
|
|
|
|
freeswitch-mod-console \
|
|
|
|
freeswitch-mod-db \
|
|
|
|
freeswitch-mod-dialplan-asterisk \
|
|
|
|
freeswitch-mod-dialplan-xml \
|
|
|
|
freeswitch-mod-dptools \
|
|
|
|
freeswitch-mod-enum \
|
|
|
|
freeswitch-mod-esf \
|
|
|
|
freeswitch-mod-event-socket \
|
|
|
|
freeswitch-mod-expr \
|
|
|
|
freeswitch-mod-fifo \
|
|
|
|
freeswitch-mod-fsv \
|
|
|
|
freeswitch-mod-g723-1 \
|
|
|
|
freeswitch-mod-g729 \
|
|
|
|
freeswitch-mod-hash \
|
|
|
|
freeswitch-mod-httapi \
|
|
|
|
freeswitch-mod-local-stream \
|
|
|
|
freeswitch-mod-logfile \
|
|
|
|
freeswitch-mod-loopback \
|
|
|
|
freeswitch-mod-lua \
|
|
|
|
freeswitch-mod-native-file \
|
|
|
|
freeswitch-mod-opusfile \
|
|
|
|
freeswitch-mod-opus \
|
|
|
|
freeswitch-mod-png \
|
|
|
|
freeswitch-mod-rtc \
|
|
|
|
freeswitch-mod-say-en \
|
|
|
|
freeswitch-mod-sndfile \
|
|
|
|
freeswitch-mod-sofia \
|
|
|
|
freeswitch-mod-spandsp \
|
|
|
|
freeswitch-mod-tone-stream \
|
|
|
|
freeswitch-mod-verto \
|
|
|
|
freeswitch-sounds-en-us-callie
|
|
|
|
|
|
|
|
# Potentially missing
|
|
|
|
# (included in bbb-freeswitch-core but not referenced in https://github.com/bigbluebutton/bigbluebutton/issues/9064)
|
|
|
|
# freeswitch-mod-cdr-csv
|
|
|
|
# freeswitch-mod-cdr-sqlite
|
|
|
|
# freeswitch-mod-h26x
|
|
|
|
# freeswitch-mod-skinny
|
|
|
|
# freeswitch-mod-sms
|
|
|
|
# freeswitch-mod-syslog
|
|
|
|
# freeswitch-mod-valet-parking
|
|
|
|
# freeswitch-mod-voicemail
|
|
|
|
# freeswitch-mod-xml-cdr
|
|
|
|
# freeswitch-mod-xml-rpc
|
|
|
|
# freeswitch-mod-xml-scgi
|
|
|
|
|
|
|
|
|
2020-05-15 18:44:19 +02:00
|
|
|
# -- get official bbb freeswitch config
|
|
|
|
# we use svn for retrieving the files since the repo is quite large,
|
|
|
|
# git sparse-checkout is not yet available with buster and there
|
|
|
|
# is no other sane way of downloading a single directory via git
|
|
|
|
ENV GIT_TAG v2.2.9-freeswitch
|
|
|
|
RUN cd /etc \
|
|
|
|
&& svn checkout https://github.com/alangecker/bbb-packages/tags/$GIT_TAG/bbb-freeswitch-core/data/opt/freeswitch/etc/freeswitch \
|
|
|
|
&& rm -rf /etc/freeswitch/.svn
|
|
|
|
|
|
|
|
# add modifications
|
|
|
|
COPY ./conf /etc/freeswitch/
|
|
|
|
|
|
|
|
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
2020-05-14 15:21:21 +02:00
|
|
|
ENTRYPOINT /entrypoint.sh
|