docker-playground/osmo-msc-master/Dockerfile

88 lines
2.4 KiB
Docker

ARG USER
ARG DISTRO
ARG OSMOCOM_REPO_MIRROR="http://download.opensuse.org"
FROM $USER/$DISTRO-build
# Arguments used after FROM must be specified again
ARG DISTRO
ARG OSMOCOM_REPO_MIRROR="http://download.opensuse.org"
MAINTAINER Harald Welte <laforge@gnumonks.org>
ARG OSMOCOM_REPO="$OSMOCOM_REPO_MIRROR/repositories/network:/osmocom:/nightly/Debian_9.0/"
COPY Release.key /tmp/Release.key
RUN case "$DISTRO" in \
debian*) \
apt-key add /tmp/Release.key && \
rm /tmp/Release.key && \
echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list \
;; \
esac
# 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
ADD $OSMOCOM_REPO/Release /tmp/Release
ADD $OSMOCOM_REPO_MIRROR/repositories/network:/osmocom:/nightly/CentOS_8/repodata/repomd.xml /tmp/repomd.xml
RUN case "$DISTRO" in \
debian*) \
apt-get update && \
apt-get install -y --no-install-recommends \
libasn1c-dev \
libdbd-sqlite3 \
libdbi-dev \
libosmo-abis-dev \
libosmo-mgcp-client-dev \
libosmo-gsup-client-dev \
libosmo-netif-dev \
libosmo-ranap-dev \
libosmo-sccp-dev \
libosmo-sigtran-dev \
libosmocore-dev \
libsmpp34-dev \
telnet && \
apt-get clean \
;; \
centos*) \
dnf install -y \
telnet \
"pkgconfig(libasn1c)" \
"pkgconfig(libosmo-gsup-client)" \
"pkgconfig(libosmo-mgcp-client)" \
"pkgconfig(libosmo-netif)" \
"pkgconfig(libosmo-ranap)" \
"pkgconfig(libosmo-sccp)" \
"pkgconfig(libosmo-sigtran)" \
"pkgconfig(libosmoabis)" \
"pkgconfig(libosmocore)" \
"pkgconfig(libosmoctrl)" \
"pkgconfig(libosmogsm)" \
"pkgconfig(libosmovty)" \
"pkgconfig(libsmpp34)" \
;; \
esac
WORKDIR /tmp
ARG OSMO_MSC_BRANCH="master"
RUN git clone git://git.osmocom.org/osmo-msc.git
ADD http://git.osmocom.org/osmo-msc/patch?h=$OSMO_MSC_BRANCH /tmp/commit-osmo-msc
RUN cd osmo-msc && \
git fetch && git checkout $OSMO_MSC_BRANCH && \
(git symbolic-ref -q HEAD && git reset --hard origin/$OSMO_MSC_BRANCH || exit 1); \
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
autoreconf -fi && \
./configure --enable-smpp --enable-iu && \
make "-j$(nproc)" install
VOLUME /data
COPY osmo-msc.cfg /data/osmo-msc.cfg
WORKDIR /data
CMD ["/bin/sh", "-c", "/usr/local/bin/osmo-msc -c /data/osmo-msc.cfg >/data/osmo-msc.log 2>&1"]
#EXPOSE