Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Udpate OTP image to 23.2.7 #341

Merged
merged 1 commit into from
Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ check:otp-23.0:
check:otp-23.1:
<<: *check_otp
image: erlang:23.1.2.0-alpine

check:otp-23.2:
<<: *check_otp
image: erlang:23.2.7.0-alpine

docker:
image: jdrouet/docker-with-buildx:stable
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ ergw-c-node

# BUILDING & RUNNING
## REQUIRED
* The minimum supported Erlang version is **22.3.4** (*Erlang 23.0.3 is the recommended version.*).
* Erlang OTP **23.2.7** is the recommended version.
* [Rebar3](https://www.rebar3.org/)
An *erGW* installation needs a user plane provider to handle the GTP-U path. This
instance can be installed on the same or different host.
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -- build-environment --
# see https://docs.docker.com/engine/userguide/eng-image/multistage-build/

FROM erlang:23.1.2.0-alpine AS build-env
FROM erlang:23.2.7.0-alpine AS build-env

WORKDIR /build
RUN apk update && apk --no-cache upgrade && \
Expand Down