diff --git a/README.md b/README.md index 72af901..6aaafd4 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/compatibility.md b/docs/compatibility.md index 46d719d..6dd707f 100644 --- a/docs/compatibility.md +++ b/docs/compatibility.md @@ -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 | diff --git a/images/amf/Dockerfile b/images/amf/Dockerfile index 89261db..d5962ca 100644 --- a/images/amf/Dockerfile +++ b/images/amf/Dockerfile @@ -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 diff --git a/images/ausf/Dockerfile b/images/ausf/Dockerfile index 621e3a4..9a0afde 100644 --- a/images/ausf/Dockerfile +++ b/images/ausf/Dockerfile @@ -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 diff --git a/images/base/Dockerfile b/images/base/Dockerfile index 6c9ab3b..8e94ae6 100644 --- a/images/base/Dockerfile +++ b/images/base/Dockerfile @@ -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 \ diff --git a/images/bsf/Dockerfile b/images/bsf/Dockerfile index 6f54015..ef60417 100644 --- a/images/bsf/Dockerfile +++ b/images/bsf/Dockerfile @@ -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 diff --git a/images/nrf/Dockerfile b/images/nrf/Dockerfile index f3b5d92..6be7e7f 100644 --- a/images/nrf/Dockerfile +++ b/images/nrf/Dockerfile @@ -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 diff --git a/images/nssf/Dockerfile b/images/nssf/Dockerfile index 0940cea..ceec778 100644 --- a/images/nssf/Dockerfile +++ b/images/nssf/Dockerfile @@ -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 diff --git a/images/pcf/Dockerfile b/images/pcf/Dockerfile index 85ff845..f8ad853 100644 --- a/images/pcf/Dockerfile +++ b/images/pcf/Dockerfile @@ -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 diff --git a/images/scp/Dockerfile b/images/scp/Dockerfile index bb9bd0c..925b94b 100644 --- a/images/scp/Dockerfile +++ b/images/scp/Dockerfile @@ -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 diff --git a/images/smf/Dockerfile b/images/smf/Dockerfile index a89ff6c..2913a39 100644 --- a/images/smf/Dockerfile +++ b/images/smf/Dockerfile @@ -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 diff --git a/images/udm/Dockerfile b/images/udm/Dockerfile index cfd9338..674f888 100644 --- a/images/udm/Dockerfile +++ b/images/udm/Dockerfile @@ -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 diff --git a/images/udr/Dockerfile b/images/udr/Dockerfile index 4214715..0e17209 100644 --- a/images/udr/Dockerfile +++ b/images/udr/Dockerfile @@ -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 diff --git a/images/upf/Dockerfile b/images/upf/Dockerfile index 1d756f4..a0cd15d 100644 --- a/images/upf/Dockerfile +++ b/images/upf/Dockerfile @@ -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