From 78449b0b8ac829a2d8e0fd034f062de4e52b6148 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Tue, 21 Oct 2025 09:19:54 +0100 Subject: [PATCH] Update elixir to 1.19.1 and erlang to 28.1.1 --- .tool-versions | 4 ++-- Dockerfile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.tool-versions b/.tool-versions index 5c210233..a7112cf1 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,3 +1,3 @@ -elixir 1.19.0-otp-28 -erlang 28.1 nodejs 24.9.0 +elixir 1.19.1-otp-28 +erlang 28.1.1 diff --git a/Dockerfile b/Dockerfile index 1805c609..df1b1123 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,9 @@ # - https://pkgs.org/ - resource for finding needed packages # - Ex: hexpm/elixir:1.17.2-erlang-27.1-debian-bullseye-20240904-slim # -ARG ELIXIR_VERSION=1.19.0 -ARG OTP_VERSION=28.1 -ARG DEBIAN_VERSION=bookworm-20250929-slim +ARG ELIXIR_VERSION=1.19.1 +ARG OTP_VERSION=28.1.1 +ARG DEBIAN_VERSION=bookworm-20251020-slim ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"