Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ On the other hand, some OSes won't run older Erlangs because of library changes,
Just specify on the command line any of the `ERLANGVERSION`, `NODEVERSION`, or `ELIXIRVERSION` environment variables:

```
NODEVERSION=18 ELIXIRVERSION=v1.15.7 ERLANGVERSION=24.3.4.17 ./build.sh platform debian-bullseye
NODEVERSION=18 ELIXIRVERSION=v1.15.7 ERLANGVERSION=25.3.2.12 ./build.sh platform debian-bullseye
```

## Building images for other architectures
Expand Down
4 changes: 2 additions & 2 deletions bin/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
set -e

# Defaults updated 2023-03-20
NODEVERSION=${NODEVERSION:-14}
ERLANGVERSION=${ERLANGVERSION:-24.3.4.17}
NODEVERSION=${NODEVERSION:-18}
ERLANGVERSION=${ERLANGVERSION:-25.3.2.12}
ELIXIRVERSION=${ELIXIRVERSION:-v1.15.7}


Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ DEBIANS="debian-bullseye debian-bookworm"
UBUNTUS="ubuntu-focal ubuntu-jammy"
CENTOSES="almalinux-8 almalinux-9"

XPLAT_BASE="debian-bullseye"
XPLAT_BASE="debian-bookworm"
XPLAT_ARCHES="arm64v8 ppc64le s390x"
PASSED_BUILDARGS="$buildargs"

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/almalinux-8
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ARG js=js
# Choose whether to install Erlang, default yes
ARG erlang=erlang
# Select version of Node, Erlang and Elixir to install
ARG erlangversion=24.3.4.17
ARG erlangversion=25.3.2.12
ARG elixirversion=v1.15.7
ARG nodeversion=18

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/almalinux-9
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ARG js=js
# Choose whether to install Erlang, default yes
ARG erlang=erlang
# Select version of Node, Erlang and Elixir to install
ARG erlangversion=24.3.4.17
ARG erlangversion=25.3.2.12
ARG elixirversion=v1.15.7
ARG nodeversion=18

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/debian-bookworm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ARG js=js
# Choose whether to install Erlang, default yes
ARG erlang=erlang
# Select version of Node, Erlang and Elixir
ARG erlangversion=24.3.4.17
ARG erlangversion=25.3.2.12
ARG elixirversion=v1.15.7
ARG nodeversion=18

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/debian-bullseye
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ARG js=js
# Choose whether to install Erlang, default yes
ARG erlang=erlang
# Select version of Node, Erlang and Elixir
ARG erlangversion=24.3.4.17
ARG erlangversion=25.3.2.12
ARG elixirversion=v1.15.7
ARG nodeversion=18

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/ubuntu-focal
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ARG js=js
# Choose whether to install Erlang, default yes
ARG erlang=erlang
# Select version of Node, Erlang and Elixir to install
ARG erlangversion=24.3.4.17
ARG erlangversion=25.3.2.12
ARG elixirversion=v1.15.7
ARG nodeversion=18

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/ubuntu-jammy
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ARG js=js
# Choose whether to install Erlang, default yes
ARG erlang=erlang
# Select version of Node, Erlang and Elixir to install
ARG erlangversion=24.3.4.17
ARG erlangversion=25.3.2.12
ARG elixirversion=v1.15.7
ARG nodeversion=18

Expand Down
13 changes: 6 additions & 7 deletions pull-all-couchdbdev-docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ DOCKER_ORG="apache"

# These are the images that are currently being used, so don't `docker rmi` them on cleanup.
KEEP_IMAGES=(
couchdbci-debian:bullseye-erlang-25.3.2.12
couchdbci-debian:bullseye-erlang-26.2.5
couchdbci-debian:bullseye-erlang-24.3.4.17
couchdbci-centos:9-erlang-24.3.4.17
couchdbci-centos:8-erlang-24.3.4.17
couchdbci-ubuntu:jammy-erlang-24.3.4.17
couchdbci-ubuntu:focal-erlang-24.3.4.17
couchdbci-debian:bookworm-erlang-25.3.2.12
couchdbci-debian:bookworm-erlang-26.2.5
couchdbci-centos:9-erlang-25.3.2.12
couchdbci-centos:8-erlang-25.3.2.12
couchdbci-ubuntu:jammy-erlang-25.3.2.12
couchdbci-ubuntu:focal-erlang-25.3.2.12
)

for image in ${KEEP_IMAGES[*]}
Expand Down