From 6e0c02408b4e7b078765ea91faabc1df40e7c9fb Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Fri, 1 Nov 2024 17:58:26 +0800 Subject: [PATCH] Update to OTP 27.1.2 --- 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 9cfb533..6b2956f 100644 --- a/27/Dockerfile +++ b/27/Dockerfile @@ -1,6 +1,6 @@ FROM buildpack-deps:bookworm -ENV OTP_VERSION="27.1.1" \ +ENV OTP_VERSION="27.1.2" \ REBAR3_VERSION="3.23.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/archive/OTP-${OTP_VERSION}.tar.gz" \ - && OTP_DOWNLOAD_SHA256="315552992ebbc86f27b54b4267616ad49b10fa2ef6bc4ec2a6992f7054c9157e" \ + && OTP_DOWNLOAD_SHA256="365208d47f9590f27c0814ccd7ee7aec0e1b6ba2fe9d875e356edb5d9b054541" \ && runtimeDeps='libodbc1 \ libsctp1 \ libwxgtk3.2 \ diff --git a/27/alpine/Dockerfile b/27/alpine/Dockerfile index 65cd127..11ce9e8 100644 --- a/27/alpine/Dockerfile +++ b/27/alpine/Dockerfile @@ -1,13 +1,13 @@ FROM alpine:3.19 -ENV OTP_VERSION="27.1.1" \ +ENV OTP_VERSION="27.1.2" \ REBAR3_VERSION="3.23.0" LABEL org.opencontainers.image.version=$OTP_VERSION RUN set -xe \ && OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \ - && OTP_DOWNLOAD_SHA256="315552992ebbc86f27b54b4267616ad49b10fa2ef6bc4ec2a6992f7054c9157e" \ + && OTP_DOWNLOAD_SHA256="365208d47f9590f27c0814ccd7ee7aec0e1b6ba2fe9d875e356edb5d9b054541" \ && REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \ && apk add --no-cache --virtual .fetch-deps \ curl \ diff --git a/27/slim/Dockerfile b/27/slim/Dockerfile index 9925702..887d6f0 100644 --- a/27/slim/Dockerfile +++ b/27/slim/Dockerfile @@ -1,6 +1,6 @@ FROM debian:bookworm -ENV OTP_VERSION="27.1.1" \ +ENV OTP_VERSION="27.1.2" \ REBAR3_VERSION="3.23.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/archive/OTP-${OTP_VERSION}.tar.gz" \ - && OTP_DOWNLOAD_SHA256="315552992ebbc86f27b54b4267616ad49b10fa2ef6bc4ec2a6992f7054c9157e" \ + && OTP_DOWNLOAD_SHA256="365208d47f9590f27c0814ccd7ee7aec0e1b6ba2fe9d875e356edb5d9b054541" \ && fetchDeps=' \ curl \ ca-certificates' \