From 62b96419d2e41a8bc1780cf6824e98d6accaf34c Mon Sep 17 00:00:00 2001 From: Michael Konrad Date: Sun, 16 Feb 2025 12:51:23 -0500 Subject: [PATCH] chore: Update to OTP-27.2.2 * Update to 27.2.2 - bookworm, alpine, slime --- 27/Dockerfile | 4 ++-- 27/alpine/Dockerfile | 4 ++-- 27/slim/Dockerfile | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/27/Dockerfile b/27/Dockerfile index ea085a9f..3080a234 100644 --- a/27/Dockerfile +++ b/27/Dockerfile @@ -1,6 +1,6 @@ FROM buildpack-deps:bookworm -ENV OTP_VERSION="27.2.1" \ +ENV OTP_VERSION="27.2.2" \ REBAR3_VERSION="3.24.0" LABEL org.opencontainers.image.version=$OTP_VERSION @@ -9,7 +9,7 @@ LABEL org.opencontainers.image.version=$OTP_VERSION # build process: RUN set -xe \ && OTP_DOWNLOAD_URL="https://github.com/erlang/otp/releases/download/OTP-${OTP_VERSION}/otp_src_${OTP_VERSION}.tar.gz" \ - && OTP_DOWNLOAD_SHA256="07982134e10637dde57cf9cdc6dda6f65425810229986136d184766d4db9eda3" \ + && OTP_DOWNLOAD_SHA256="4f74095a24e48978f062b077651ac0876c5d3a42799b20fd996923bf15b5df29" \ && runtimeDeps='libodbc1 \ libsctp1 \ libwxgtk3.2 \ diff --git a/27/alpine/Dockerfile b/27/alpine/Dockerfile index 6023a18f..4de26e93 100644 --- a/27/alpine/Dockerfile +++ b/27/alpine/Dockerfile @@ -1,13 +1,13 @@ FROM alpine:3.21 -ENV OTP_VERSION="27.2.1" \ +ENV OTP_VERSION="27.2.2" \ REBAR3_VERSION="3.24.0" LABEL org.opencontainers.image.version=$OTP_VERSION RUN set -xe \ && OTP_DOWNLOAD_URL="https://github.com/erlang/otp/releases/download/OTP-${OTP_VERSION}/otp_src_${OTP_VERSION}.tar.gz" \ - && OTP_DOWNLOAD_SHA256="07982134e10637dde57cf9cdc6dda6f65425810229986136d184766d4db9eda3" \ + && OTP_DOWNLOAD_SHA256="4f74095a24e48978f062b077651ac0876c5d3a42799b20fd996923bf15b5df29" \ && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \ && apk add --no-cache --virtual .fetch-deps \ curl \ diff --git a/27/slim/Dockerfile b/27/slim/Dockerfile index 4a5efd31..bc092653 100644 --- a/27/slim/Dockerfile +++ b/27/slim/Dockerfile @@ -1,6 +1,6 @@ FROM debian:bookworm -ENV OTP_VERSION="27.2.1" \ +ENV OTP_VERSION="27.2.2" \ REBAR3_VERSION="3.24.0" LABEL org.opencontainers.image.version=$OTP_VERSION @@ -9,7 +9,7 @@ LABEL org.opencontainers.image.version=$OTP_VERSION # sure our final image contains only what we've just built: RUN set -xe \ && OTP_DOWNLOAD_URL="https://github.com/erlang/otp/releases/download/OTP-${OTP_VERSION}/otp_src_${OTP_VERSION}.tar.gz" \ - && OTP_DOWNLOAD_SHA256="07982134e10637dde57cf9cdc6dda6f65425810229986136d184766d4db9eda3" \ + && OTP_DOWNLOAD_SHA256="4f74095a24e48978f062b077651ac0876c5d3a42799b20fd996923bf15b5df29" \ && fetchDeps=' \ curl \ ca-certificates' \