ARG USER FROM $USER/debian-stretch-build MAINTAINER Harald Welte ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/nightly/Debian_9.0/" COPY Release.key /tmp/Release.key RUN apt-key add /tmp/Release.key && \ rm /tmp/Release.key && \ echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list ADD $OSMOCOM_REPO/Release /tmp/Release RUN apt-get update && \ apt-get install -y --no-install-recommends \ telnet \ libosmocore-dev \ libosmo-abis-dev \ libosmo-netif-dev \ libosmo-sccp-dev \ libsmpp34-dev \ libgtp-dev && \ apt-get clean WORKDIR /tmp ARG OSMO_NITB_BRANCH="master" RUN git clone git://git.osmocom.org/openbsc.git ADD http://git.osmocom.org/openbsc/patch?h=$OSMO_NITB_BRANCH /tmp/commit-openbsc RUN cd openbsc/openbsc && \ git fetch && git checkout -f -B $OSMO_NITB_BRANCH $OSMO_NITB_BRANCH && \ git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \ autoreconf -fi && \ ./configure --enable-nat --enable-osmo-bsc --enable-smpp && \ make -j8 install && \ ldconfig VOLUME /data COPY openbsc.cfg /data/openbsc.cfg WORKDIR /data CMD ["/usr/local/bin/osmo-nitb"] EXPOSE 3002/tcp 3003/tcp 4242/tcp 2775/tcp 4249/tcp