From 41fd61e2f6d6f2b9bb40416d25f37cfdf7406451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?19=E5=B9=B4=E6=A2=A6=E9=86=92?= <3949379+getong@users.noreply.github.com> Date: Tue, 12 Mar 2024 02:57:00 +0800 Subject: [PATCH] erlang/otp 26.2.3 --- 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 5238e17..a2e6b3a 100644 --- a/26/Dockerfile +++ b/26/Dockerfile @@ -1,6 +1,6 @@ FROM buildpack-deps:bookworm -ENV OTP_VERSION="26.2.2" \ +ENV OTP_VERSION="26.2.3" \ REBAR3_VERSION="3.22.1" 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="93c09aa8814018c23d218ac68b2bcdba188e12086223fbfa08af5cc70edd7ee1" \ + && OTP_DOWNLOAD_SHA256="7a79e7955890b06572dbb3c3460771a71f729c15bc6ced018916a432669fd239" \ && runtimeDeps='libodbc1 \ libsctp1 \ libwxgtk3.2-1 \ diff --git a/26/alpine/Dockerfile b/26/alpine/Dockerfile index 81cb3f1..09dd987 100644 --- a/26/alpine/Dockerfile +++ b/26/alpine/Dockerfile @@ -1,13 +1,13 @@ FROM alpine:3.19 -ENV OTP_VERSION="26.2.2" \ +ENV OTP_VERSION="26.2.3" \ REBAR3_VERSION="3.22.1" 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="93c09aa8814018c23d218ac68b2bcdba188e12086223fbfa08af5cc70edd7ee1" \ + && OTP_DOWNLOAD_SHA256="7a79e7955890b06572dbb3c3460771a71f729c15bc6ced018916a432669fd239" \ && REBAR3_DOWNLOAD_SHA256="2855b5784300865d2e43cb7a135cb2bba144cf15214c619065b918afc8cc6eb9" \ && apk add --no-cache --virtual .fetch-deps \ curl \ diff --git a/26/slim/Dockerfile b/26/slim/Dockerfile index feb4dc7..eed0425 100644 --- a/26/slim/Dockerfile +++ b/26/slim/Dockerfile @@ -1,6 +1,6 @@ FROM debian:bookworm -ENV OTP_VERSION="26.2.2" \ +ENV OTP_VERSION="26.2.3" \ REBAR3_VERSION="3.22.1" 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="93c09aa8814018c23d218ac68b2bcdba188e12086223fbfa08af5cc70edd7ee1" \ + && OTP_DOWNLOAD_SHA256="7a79e7955890b06572dbb3c3460771a71f729c15bc6ced018916a432669fd239" \ && fetchDeps=' \ curl \ ca-certificates' \