Skip to content

Commit 5ae117e

Browse files
committed
Update Rebar3 to 3.24.0 for OTP 25/26/27
See https://github.com/erlang/rebar3/releases/tag/3.24.0
1 parent 84e8644 commit 5ae117e

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

25/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM buildpack-deps:bullseye
22

33
ENV OTP_VERSION="25.3.2.13" \
4-
REBAR3_VERSION="3.23.0"
4+
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

@@ -45,7 +45,7 @@ ENV REBAR_VERSION="2.6.4"
4545

4646
RUN set -xe \
4747
&& REBAR_DOWNLOAD_URL="https://github.com/rebar/rebar/archive/${REBAR_VERSION}.tar.gz" \
48-
&& REBAR_DOWNLOAD_SHA256="577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07" \
48+
&& REBAR_DOWNLOAD_SHA256="3577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07" \
4949
&& mkdir -p /usr/src/rebar-src \
5050
&& curl -fSL -o rebar-src.tar.gz "$REBAR_DOWNLOAD_URL" \
5151
&& echo "$REBAR_DOWNLOAD_SHA256 rebar-src.tar.gz" | sha256sum -c - \
@@ -58,7 +58,7 @@ RUN set -xe \
5858

5959
RUN set -xe \
6060
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
61-
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
61+
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
6262
&& mkdir -p /usr/src/rebar3-src \
6363
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
6464
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \

25/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
FROM alpine:3.18
22

33
ENV OTP_VERSION="25.3.2.13" \
4-
REBAR3_VERSION="3.23.0"
4+
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

88
RUN set -xe \
99
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
1010
&& OTP_DOWNLOAD_SHA256="ef56f754f14ba89356284145c8a0dd95e11f00ec6142b4dd9a9431570d6ff5ea" \
11-
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
11+
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
1212
&& apk add --no-cache --virtual .fetch-deps \
1313
curl \
1414
ca-certificates \

25/slim/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:bullseye
22

33
ENV OTP_VERSION="25.3.2.13" \
4-
REBAR3_VERSION="3.23.0"
4+
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

@@ -47,7 +47,7 @@ RUN set -xe \
4747
&& make install ) \
4848
&& find /usr/local -name examples | xargs rm -rf \
4949
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
50-
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
50+
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
5151
&& mkdir -p /usr/src/rebar3-src \
5252
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
5353
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \

26/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM buildpack-deps:bookworm
22

33
ENV OTP_VERSION="26.2.5.2" \
4-
REBAR3_VERSION="3.23.0"
4+
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

@@ -45,7 +45,7 @@ ENV REBAR_VERSION="2.6.4"
4545

4646
RUN set -xe \
4747
&& REBAR_DOWNLOAD_URL="https://github.com/rebar/rebar/archive/${REBAR_VERSION}.tar.gz" \
48-
&& REBAR_DOWNLOAD_SHA256="577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07" \
48+
&& REBAR_DOWNLOAD_SHA256="3577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07" \
4949
&& mkdir -p /usr/src/rebar-src \
5050
&& curl -fSL -o rebar-src.tar.gz "$REBAR_DOWNLOAD_URL" \
5151
&& echo "$REBAR_DOWNLOAD_SHA256 rebar-src.tar.gz" | sha256sum -c - \
@@ -58,7 +58,7 @@ RUN set -xe \
5858

5959
RUN set -xe \
6060
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
61-
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
61+
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
6262
&& mkdir -p /usr/src/rebar3-src \
6363
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
6464
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \

26/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
FROM alpine:3.19
22

33
ENV OTP_VERSION="26.2.5.2" \
4-
REBAR3_VERSION="3.23.0"
4+
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

88
RUN set -xe \
99
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
1010
&& OTP_DOWNLOAD_SHA256="8e537e2d984770796cc7f0c7c079a9e5fbc67b8c368e0dcd9aa2ceaeb2844da2" \
11-
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
11+
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
1212
&& apk add --no-cache --virtual .fetch-deps \
1313
curl \
1414
ca-certificates \

26/slim/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:bookworm
22

33
ENV OTP_VERSION="26.2.5.2" \
4-
REBAR3_VERSION="3.23.0"
4+
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

@@ -47,7 +47,7 @@ RUN set -xe \
4747
&& make install ) \
4848
&& find /usr/local -name examples | xargs rm -rf \
4949
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
50-
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
50+
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
5151
&& mkdir -p /usr/src/rebar3-src \
5252
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
5353
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \

27/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM buildpack-deps:bookworm
22

33
ENV OTP_VERSION="27.1.2" \
4-
REBAR3_VERSION="3.23.0"
4+
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

@@ -44,7 +44,7 @@ ENV REBAR_VERSION="2.6.4"
4444

4545
RUN set -xe \
4646
&& REBAR_DOWNLOAD_URL="https://github.com/rebar/rebar/archive/${REBAR_VERSION}.tar.gz" \
47-
&& REBAR_DOWNLOAD_SHA256="577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07" \
47+
&& REBAR_DOWNLOAD_SHA256="3577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07" \
4848
&& mkdir -p /usr/src/rebar-src \
4949
&& curl -fSL -o rebar-src.tar.gz "$REBAR_DOWNLOAD_URL" \
5050
&& echo "$REBAR_DOWNLOAD_SHA256 rebar-src.tar.gz" | sha256sum -c - \
@@ -57,7 +57,7 @@ RUN set -xe \
5757

5858
RUN set -xe \
5959
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
60-
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
60+
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
6161
&& mkdir -p /usr/src/rebar3-src \
6262
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
6363
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \

27/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
FROM alpine:3.19
22

33
ENV OTP_VERSION="27.1.2" \
4-
REBAR3_VERSION="3.23.0"
4+
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

88
RUN set -xe \
99
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
1010
&& OTP_DOWNLOAD_SHA256="365208d47f9590f27c0814ccd7ee7aec0e1b6ba2fe9d875e356edb5d9b054541" \
11-
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
11+
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
1212
&& apk add --no-cache --virtual .fetch-deps \
1313
curl \
1414
ca-certificates \

27/slim/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:bookworm
22

33
ENV OTP_VERSION="27.1.2" \
4-
REBAR3_VERSION="3.23.0"
4+
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

@@ -47,7 +47,7 @@ RUN set -xe \
4747
&& make install ) \
4848
&& find /usr/local -name examples | xargs rm -rf \
4949
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
50-
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
50+
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
5151
&& mkdir -p /usr/src/rebar3-src \
5252
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
5353
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \

0 commit comments

Comments
 (0)