Skip to content

Commit

Permalink
Update to Open5GS v2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Borjis131 committed Mar 9, 2023
1 parent 037bfe2 commit be2d553
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ All the images depend on the base image. So first, update the `.env` file with t
`OPEN5GS_VERSION` is the version of Open5GS to use.
- Accepted values are the tags, branches or commit IDs used in the Open5GS project
- Default value: v2.5.8
- Tested values: v2.5.5, v2.5.6, v2.5.8, v2.6.0
- Tested values: v2.5.5, v2.5.6, v2.5.8, v2.6.1

`UBUNTU_VERSION` is the version of the ubuntu Docker image used as base for the containers.
- Accepted values are the tags used by Ubuntu in Docker Hub
Expand Down
2 changes: 1 addition & 1 deletion docs/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ Sometimes it will work, sometimes it will not. It will be hard to test the inter
| docker-open5gs version | Open5GS version | backwards compatible |
| --- | --- | --- |
| v2.5.8 | v2.5.6 | yes |
| v2.6.0 | v2.5.8 | no |
| v2.6.1 | v2.5.8 | no |
2 changes: 1 addition & 1 deletion images/amf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion images/ausf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
6 changes: 3 additions & 3 deletions images/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ ARG UBUNTU_VERSION="focal"
FROM ubuntu:${UBUNTU_VERSION} AS builder

# build-time arguments for builder
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG DEBIAN_FRONTEND="noninteractive"

# install dependencies
RUN apt-get update && apt-get install python3-pip python3-setuptools python3-wheel ninja-build build-essential \
flex bison git libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libmongoc-dev \
flex bison git cmake libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libmongoc-dev \
libbson-dev libyaml-dev libnghttp2-dev libmicrohttpd-dev libcurl4-gnutls-dev \
libtins-dev libtalloc-dev meson cmake -y
libtins-dev libtalloc-dev meson -y

# clone the specific open5gs version and install it
RUN git clone --depth 1 --branch=${OPEN5GS_VERSION} https://github.com/open5gs/open5gs \
Expand Down
2 changes: 1 addition & 1 deletion images/bsf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion images/nrf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion images/nssf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion images/pcf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion images/scp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion images/smf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion images/udm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion images/udr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down
2 changes: 1 addition & 1 deletion images/upf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# global build-time arguments for FROM statements
ARG OPEN5GS_VERSION="v2.6.0"
ARG OPEN5GS_VERSION="v2.6.1"
ARG UBUNTU_VERSION="focal"

FROM base:${OPEN5GS_VERSION} AS builder
Expand Down

0 comments on commit be2d553

Please sign in to comment.