From 59de7e2d733ab918cb271f25baa6ad141dfa8c28 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 9 Apr 2026 14:02:25 -0500 Subject: [PATCH] Bump Docker image to Elixir 1.19.5 / OTP 28.4.1 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index eb6a9dcd..2d3f343b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,10 +9,10 @@ # - https://hub.docker.com/r/hexpm/elixir/tags - for the build image # - https://hub.docker.com/_/debian/tags?name=trixie-20260316-slim - for the release image # - https://pkgs.org/ - resource for finding needed packages -# - Ex: docker.io/hexpm/elixir:1.19.0-erlang-28.3-debian-trixie-20260316-slim +# - Ex: docker.io/hexpm/elixir:1.19.5-erlang-28.4.1-debian-trixie-20260316-slim # -ARG ELIXIR_VERSION=1.19.0 -ARG OTP_VERSION=28.3 +ARG ELIXIR_VERSION=1.19.5 +ARG OTP_VERSION=28.4.1 ARG DEBIAN_VERSION=trixie-20260316-slim ARG BUILDER_IMAGE="docker.io/hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"