diff --git a/28/Dockerfile b/28/Dockerfile index f4ba141..a343f9e 100644 --- a/28/Dockerfile +++ b/28/Dockerfile @@ -1,6 +1,6 @@ FROM buildpack-deps:trixie -ENV OTP_VERSION="28.3.2" \ +ENV OTP_VERSION="28.3.3" \ REBAR3_VERSION="3.26.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="36380480aed888281b8202e75449cca307102e43c4e04696cc83bd3b162991cf" \ + && OTP_DOWNLOAD_SHA256="641f252b12b64c89ea8ae16b6c35d8983378a588490421bf1e69cdc51cea6e65" \ && runtimeDeps='libodbc2 \ libsctp1 \ libwxgtk3.2 \ diff --git a/28/alpine/Dockerfile b/28/alpine/Dockerfile index 585a367..727238c 100644 --- a/28/alpine/Dockerfile +++ b/28/alpine/Dockerfile @@ -1,13 +1,13 @@ FROM alpine:3.23 -ENV OTP_VERSION="28.3.2" \ +ENV OTP_VERSION="28.3.3" \ REBAR3_VERSION="3.26.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="36380480aed888281b8202e75449cca307102e43c4e04696cc83bd3b162991cf" \ + && OTP_DOWNLOAD_SHA256="641f252b12b64c89ea8ae16b6c35d8983378a588490421bf1e69cdc51cea6e65" \ && REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \ && apk add --no-cache --virtual .fetch-deps \ curl \ diff --git a/28/slim/Dockerfile b/28/slim/Dockerfile index f017ca2..4a67d5e 100644 --- a/28/slim/Dockerfile +++ b/28/slim/Dockerfile @@ -1,6 +1,6 @@ FROM debian:trixie -ENV OTP_VERSION="28.3.2" \ +ENV OTP_VERSION="28.3.3" \ REBAR3_VERSION="3.26.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="36380480aed888281b8202e75449cca307102e43c4e04696cc83bd3b162991cf" \ + && OTP_DOWNLOAD_SHA256="641f252b12b64c89ea8ae16b6c35d8983378a588490421bf1e69cdc51cea6e65" \ && fetchDeps=' \ curl \ ca-certificates' \