From af6f44c5df71a4396998e8b88a05b3a9d53df913 Mon Sep 17 00:00:00 2001 From: Maarten Jacobs Date: Sun, 24 May 2026 10:31:10 +0200 Subject: [PATCH] Add Elixir 1.20.0-rc.6 Same shape as 1.18.1: pulls hexpm/elixir's ubuntu-noble base, installs git/build tools/Node 20.12.2. Pinned to erlang-28.5 to match what the consumers (detroit) already run on OTP 28. Co-Authored-By: Claude Opus 4.7 (1M context) --- 1.20.0-rc.6/Dockerfile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 1.20.0-rc.6/Dockerfile diff --git a/1.20.0-rc.6/Dockerfile b/1.20.0-rc.6/Dockerfile new file mode 100644 index 0000000..3f7519a --- /dev/null +++ b/1.20.0-rc.6/Dockerfile @@ -0,0 +1,28 @@ +FROM hexpm/elixir:1.20.0-rc.6-erlang-28.5-ubuntu-noble-20260410 + +ENV NODE_VERSION="20.12.2" +ENV NODE_DOWNLOAD_URL="https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.xz" + +RUN <