diff --git a/5.1/alpine3.18/Dockerfile b/5.1/alpine3.18/Dockerfile index a8eac20..9fc2e74 100644 --- a/5.1/alpine3.18/Dockerfile +++ b/5.1/alpine3.18/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM ruby:3.1-alpine3.18 +FROM ruby:3.2-alpine3.18 # explicitly set uid/gid to guarantee that it won't change in the future # the values 999:999 are identical to the current user/group id assigned diff --git a/5.1/bookworm/Dockerfile b/5.1/bookworm/Dockerfile index 9ecbcd9..ce3d4b9 100644 --- a/5.1/bookworm/Dockerfile +++ b/5.1/bookworm/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM ruby:3.1-slim-bookworm +FROM ruby:3.2-slim-bookworm # explicitly set uid/gid to guarantee that it won't change in the future # the values 999:999 are identical to the current user/group id assigned diff --git a/versions.json b/versions.json index 33d7564..884cfff 100644 --- a/versions.json +++ b/versions.json @@ -18,7 +18,7 @@ "debian": "bookworm", "downloadUrl": "https://www.redmine.org/releases/redmine-5.1.1.tar.gz", "ruby": { - "version": "3.1" + "version": "3.2" }, "sha256": "edf3095746effd04ad5140681d618f5fa8d06be09c47b6f8b615dcad0b753e6e", "variants": [ diff --git a/versions.sh b/versions.sh index 60cae2f..39d9cb2 100755 --- a/versions.sh +++ b/versions.sh @@ -17,8 +17,9 @@ declare -A alpineVersions=( #[5.0]='3.16' ) # see https://www.redmine.org/projects/redmine/wiki/redmineinstall -defaultRubyVersion='3.1' +defaultRubyVersion='3.2' declare -A rubyVersions=( + [5.0]='3.1' ) cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"