aboutsummaryrefslogtreecommitdiffstats
path: root/osmo-hnbgw-master/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'osmo-hnbgw-master/Dockerfile')
-rw-r--r--osmo-hnbgw-master/Dockerfile15
1 files changed, 9 insertions, 6 deletions
diff --git a/osmo-hnbgw-master/Dockerfile b/osmo-hnbgw-master/Dockerfile
index 9101e0c..06c16b2 100644
--- a/osmo-hnbgw-master/Dockerfile
+++ b/osmo-hnbgw-master/Dockerfile
@@ -10,19 +10,22 @@ RUN apt-get update && \
libosmo-abis-dev \
libosmo-netif-dev \
libosmo-sigtran-dev \
+ libosmo-ranap-dev \
+ libosmo-rua-dev \
+ libosmo-hnbap-dev \
libasn1c-dev && \
apt-get clean
WORKDIR /tmp
-ARG OSMO_IUH_BRANCH="master"
+ARG OSMO_HNBGW_BRANCH="master"
-RUN git clone git://git.osmocom.org/osmo-iuh.git
-ADD http://git.osmocom.org/osmo-iuh/patch?h=$OSMO_IUH_BRANCH /tmp/commit-osmo-mgw
+RUN git clone git://git.osmocom.org/osmo-hnbgw.git
+ADD http://git.osmocom.org/osmo-iuh/patch?h=$OSMO_HNBGW_BRANCH /tmp/commit-osmo-hnbgw
-RUN cd osmo-iuh && \
- git fetch && git checkout $OSMO_IUH_BRANCH && \
- (git symbolic-ref -q HEAD && git reset --hard origin/$OSMO_IUH_BRANCH || exit 1); \
+RUN cd osmo-hnbgw && \
+ git fetch && git checkout $OSMO_HNBGW_BRANCH && \
+ (git symbolic-ref -q HEAD && git reset --hard origin/$OSMO_HNBGW_BRANCH || exit 1); \
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
autoreconf -fi && \
./configure && \