2018-09-05 11:12:13 +00:00
|
|
|
ARG USER
|
2019-03-27 11:31:48 +00:00
|
|
|
FROM $USER/debian-stretch-build
|
2017-08-20 18:19:13 +00:00
|
|
|
|
|
|
|
MAINTAINER Harald Welte <laforge@gnumonks.org>
|
|
|
|
|
2019-03-27 11:31:48 +00:00
|
|
|
ARG OSMOCOM_REPO="http://download.opensuse.org/repositories/network:/osmocom:/nightly/Debian_9.0/"
|
2017-12-17 10:48:54 +00:00
|
|
|
|
2017-08-20 18:19:13 +00:00
|
|
|
COPY Release.key /tmp/Release.key
|
|
|
|
|
|
|
|
RUN apt-key add /tmp/Release.key && \
|
|
|
|
rm /tmp/Release.key && \
|
2017-12-17 10:48:54 +00:00
|
|
|
echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list
|
2017-08-20 18:19:13 +00:00
|
|
|
|
2020-10-16 11:10:08 +00:00
|
|
|
# we need to add this to invalidate the cache once the repository is updated.
|
|
|
|
# unfortunately Dockerfiles don't support a conditional ARG, so we need to add both DPKG + RPM
|
2017-12-17 10:48:54 +00:00
|
|
|
ADD $OSMOCOM_REPO/Release /tmp/Release
|
2020-10-16 11:10:08 +00:00
|
|
|
ADD http://download.opensuse.org/repositories/network:/osmocom:/nightly/CentOS_8_Stream/repodata/repomd.xml /tmp/repomd.xml
|
2017-08-27 07:53:26 +00:00
|
|
|
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 \
|
2017-08-28 05:46:41 +00:00
|
|
|
libgtp-dev && \
|
2017-08-27 07:53:26 +00:00
|
|
|
apt-get clean
|
2017-08-20 18:19:13 +00:00
|
|
|
|
|
|
|
WORKDIR /tmp
|
|
|
|
|
2019-04-25 11:56:14 +00:00
|
|
|
ARG OSMO_NITB_BRANCH="master"
|
|
|
|
|
2017-08-20 18:19:13 +00:00
|
|
|
RUN git clone git://git.osmocom.org/openbsc.git
|
2019-04-25 11:56:14 +00:00
|
|
|
ADD http://git.osmocom.org/openbsc/patch?h=$OSMO_NITB_BRANCH /tmp/commit-openbsc
|
2017-08-20 18:19:13 +00:00
|
|
|
|
|
|
|
RUN cd openbsc/openbsc && \
|
2019-05-22 07:08:25 +00:00
|
|
|
git fetch && git checkout $OSMO_NITB_BRANCH && \
|
|
|
|
(git symbolic-ref -q HEAD && git reset --hard origin/$OSMO_NITB_BRANCH || exit 1); \
|
2019-04-25 11:56:14 +00:00
|
|
|
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
2017-08-20 18:19:13 +00:00
|
|
|
autoreconf -fi && \
|
|
|
|
./configure --enable-nat --enable-osmo-bsc --enable-smpp && \
|
2020-07-12 19:51:58 +00:00
|
|
|
make "-j$(nproc)" install && \
|
2017-08-20 18:19:13 +00:00
|
|
|
ldconfig
|
|
|
|
|
|
|
|
VOLUME /data
|
|
|
|
|
|
|
|
COPY openbsc.cfg /data/openbsc.cfg
|
2019-06-19 11:25:22 +00:00
|
|
|
COPY osmo-bsc-nat.cfg /data/osmo-bsc-nat.cfg
|
|
|
|
COPY bscs.config /data/bscs.config
|
2017-08-20 18:19:13 +00:00
|
|
|
|
|
|
|
WORKDIR /data
|
2019-11-13 14:26:45 +00:00
|
|
|
CMD ["/bin/sh", "-c", "/usr/local/bin/osmo-nitb -c /data/osmo-nitb.cfg >/data/osmo-nitb.log 2>&1"]
|
2017-08-20 18:19:13 +00:00
|
|
|
|
|
|
|
EXPOSE 3002/tcp 3003/tcp 4242/tcp 2775/tcp 4249/tcp
|