From dfc090e1f828676b50f518646b6fdcf1f2da51f7 Mon Sep 17 00:00:00 2001 From: Pablo Minarro Date: Thu, 26 Oct 2023 15:01:24 +0200 Subject: [PATCH] erlang/otp 26.1.2 --- 26/Dockerfile | 4 ++-- 26/alpine/Dockerfile | 4 ++-- 26/slim/Dockerfile | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/26/Dockerfile b/26/Dockerfile index 2971718..a7052e7 100644 --- a/26/Dockerfile +++ b/26/Dockerfile @@ -1,6 +1,6 @@ FROM buildpack-deps:bullseye -ENV OTP_VERSION="26.1.1" \ +ENV OTP_VERSION="26.1.2" \ REBAR3_VERSION="3.20.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="a47203930e4b34a0e23bdf0a968127e5ec9d0e6c69ccf2e53be81cd2360eee2d" \ + && OTP_DOWNLOAD_SHA256="56042d53b30863d4e720ebf463d777f0502f8c986957fc3a9e63dae870bbafe0" \ && runtimeDeps='libodbc1 \ libsctp1 \ libwxgtk3.0 \ diff --git a/26/alpine/Dockerfile b/26/alpine/Dockerfile index e792c5f..5b3819f 100644 --- a/26/alpine/Dockerfile +++ b/26/alpine/Dockerfile @@ -1,13 +1,13 @@ FROM alpine:3.18 -ENV OTP_VERSION="26.1.1" \ +ENV OTP_VERSION="26.1.2" \ REBAR3_VERSION="3.20.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="a47203930e4b34a0e23bdf0a968127e5ec9d0e6c69ccf2e53be81cd2360eee2d" \ + && OTP_DOWNLOAD_SHA256="56042d53b30863d4e720ebf463d777f0502f8c986957fc3a9e63dae870bbafe0" \ && REBAR3_DOWNLOAD_SHA256="53ed7f294a8b8fb4d7d75988c69194943831c104d39832a1fa30307b1a8593de" \ && apk add --no-cache --virtual .fetch-deps \ curl \ diff --git a/26/slim/Dockerfile b/26/slim/Dockerfile index 1fdcb7f..1335ce9 100644 --- a/26/slim/Dockerfile +++ b/26/slim/Dockerfile @@ -1,6 +1,6 @@ FROM debian:bullseye -ENV OTP_VERSION="26.1.1" \ +ENV OTP_VERSION="26.1.2" \ REBAR3_VERSION="3.20.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="a47203930e4b34a0e23bdf0a968127e5ec9d0e6c69ccf2e53be81cd2360eee2d" \ + && OTP_DOWNLOAD_SHA256="56042d53b30863d4e720ebf463d777f0502f8c986957fc3a9e63dae870bbafe0" \ && fetchDeps=' \ curl \ ca-certificates' \