From 0f1c4f96b2abfdad8a06830d96be8b32d03daf0f Mon Sep 17 00:00:00 2001 From: Aleksey Kashapov Date: Thu, 4 Sep 2025 18:06:47 +0300 Subject: [PATCH] Upgrades to Erlang/OTP 27 --- .env | 7 ++++--- Dockerfile | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.env b/.env index a9aa5ca..472727c 100644 --- a/.env +++ b/.env @@ -1,4 +1,5 @@ -OTP_VERSION=24.3.4 +OTP_VERSION=27.1.2 STEP_VERSION=0.24.3 -THRIFT_VERSION=0.14.2.2 -WOORL_VERSION=1.10 +REBAR_VERSION=3.24 +THRIFT_VERSION=0.14.2.3 +WOORL_VERSION=1.10 \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index aaefa38..6e9aeda 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,11 +24,11 @@ RUN apt-get --yes update \ netcat-openbsd \ jq \ python3-pip \ + python3-six \ wget \ gnupg \ - && pip install --no-cache-dir six \ && wget -O - -q https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /usr/share/keyrings/postgresql.gpg > /dev/null \ - && echo deb [arch=amd64,arm64,ppc64el signed-by=/usr/share/keyrings/postgresql.gpg] http://apt.postgresql.org/pub/repos/apt/ bullseye-pgdg main | tee /etc/apt/sources.list.d/postgresql.list \ + && echo deb [arch=amd64,arm64,ppc64el signed-by=/usr/share/keyrings/postgresql.gpg] http://apt.postgresql.org/pub/repos/apt/ bookworm-pgdg main | tee /etc/apt/sources.list.d/postgresql.list \ && apt-get --yes update \ && apt-get --yes --no-install-recommends install postgresql-client-17 \ && apt-get clean \