From c12fd857bd1b3035a74baeee82180832f8108abf Mon Sep 17 00:00:00 2001 From: Tyler Witt Date: Tue, 14 Jan 2025 19:13:12 +0900 Subject: [PATCH] Update Dockerfile Fixup erlang version --- hex/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hex/Dockerfile b/hex/Dockerfile index 582f98a22d..db19d47fd2 100644 --- a/hex/Dockerfile +++ b/hex/Dockerfile @@ -11,8 +11,9 @@ RUN apt-get update \ # * https://github.com/dependabot/dependabot-core/pull/7865 # * https://erlangforums.com/t/erlang-solutions-apt-package-for-otp-25/1552/1 # * https://erlangforums.com/t/the-eef-is-looking-for-volunteers-to-take-over-esls-build-packages/2238/1 -ARG ERLANG_MAJOR_VERSION=27 -ARG ERLANG_VERSION=1:${ERLANG_MAJOR_VERSION}.2.1+dfsg-1ubuntu0.1 +ARG ERLANG_MAJOR_VERSION=25 +ARG ERLANG_SECONDARY_VERSION=3.2.12 +ARG ERLANG_VERSION=1:${ERLANG_MAJOR_VERSION}.${ERLANG_SECONDARY_VERSION}+dfsg-1ubuntu2 RUN apt-get update \ && apt-get install -y --no-install-recommends \ erlang=${ERLANG_VERSION}