From 8f11b51ab4d66033505e8f7b3ae0b719c7ec2411 Mon Sep 17 00:00:00 2001 From: herlesupreeth Date: Wed, 14 Oct 2020 15:15:22 +0200 Subject: [PATCH] Bump open5gs version to v2.0.18 --- base/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base/Dockerfile b/base/Dockerfile index 7857e6d..c92f42e 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -27,6 +27,7 @@ FROM ubuntu:bionic ENV DEBIAN_FRONTEND=noninteractive +ENV LD_LIBRARY_PATH=/open5gs/install/lib/x86_64-linux-gnu # Install updates and dependencies RUN apt-get update && \ @@ -41,7 +42,7 @@ RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt-get install - # Get open5gs code and install RUN git clone --recursive https://github.com/open5gs/open5gs && cd open5gs && \ - git checkout tags/v1.3.0 && meson build --prefix=`pwd`/install && \ + git checkout tags/v2.0.18 && meson build --prefix=`pwd`/install && \ ninja -C build && cd build && ninja install # Set the working directory to open5gs