From 11403dea0181fb32d630be73a46222954faea6a8 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 15 Jun 2025 10:49:57 -0500 Subject: [PATCH] update elixir/erlang version --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a1616b9..2d0d427 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,12 +9,12 @@ # - https://hub.docker.com/r/hexpm/elixir/tags - for the build image # - https://hub.docker.com/_/debian?tab=tags&page=1&name=bullseye-20250113-slim - for the release image # - https://pkgs.org/ - resource for finding needed packages -# - Ex: hexpm/elixir:1.18.2-erlang-27.2-debian-bullseye-20250113-slim +# - Ex: hexpm/elixir:1.18.3-erlang-27.2.1-debian-bullseye-20250113-slim # - https://hub.docker.com/r/aquasec/trivy - for security scanning # -ARG ELIXIR_VERSION=1.18.2 -ARG OTP_VERSION=27.2 -ARG DEBIAN_VERSION=bullseye-20250113-slim +ARG ELIXIR_VERSION=1.18.4 +ARG OTP_VERSION=27.2.4 +ARG DEBIAN_VERSION=bullseye-20250610-slim ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"