File tree Expand file tree Collapse file tree 9 files changed +18
-18
lines changed Expand file tree Collapse file tree 9 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 1
1
FROM buildpack-deps:bookworm
2
2
3
3
ENV OTP_VERSION="26.2.5.11" \
4
- REBAR3_VERSION="3.24 .0"
4
+ REBAR3_VERSION="3.25 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
@@ -58,7 +58,7 @@ RUN set -xe \
58
58
59
59
RUN set -xe \
60
60
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
61
- && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c " \
61
+ && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440 " \
62
62
&& mkdir -p /usr/src/rebar3-src \
63
63
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
64
64
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.20
2
2
3
3
ENV OTP_VERSION="26.2.5.11" \
4
- REBAR3_VERSION="3.24 .0"
4
+ REBAR3_VERSION="3.25 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
8
8
RUN set -xe \
9
9
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
10
10
&& OTP_DOWNLOAD_SHA256="2eef7aac690a6cedfe0e6a20fc2d700db3490b4e4249683c0e5b812ad71304ed" \
11
- && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c " \
11
+ && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440 " \
12
12
&& apk add --no-cache --virtual .fetch-deps \
13
13
curl \
14
14
ca-certificates \
Original file line number Diff line number Diff line change 1
1
FROM debian:bookworm
2
2
3
3
ENV OTP_VERSION="26.2.5.11" \
4
- REBAR3_VERSION="3.24 .0"
4
+ REBAR3_VERSION="3.25 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
@@ -47,7 +47,7 @@ RUN set -xe \
47
47
&& make install ) \
48
48
&& find /usr/local -name examples | xargs rm -rf \
49
49
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
50
- && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c " \
50
+ && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440 " \
51
51
&& mkdir -p /usr/src/rebar3-src \
52
52
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
53
53
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
Original file line number Diff line number Diff line change 1
1
FROM buildpack-deps:bookworm
2
2
3
3
ENV OTP_VERSION="27.3.4" \
4
- REBAR3_VERSION="3.24 .0"
4
+ REBAR3_VERSION="3.25 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
@@ -57,7 +57,7 @@ RUN set -xe \
57
57
58
58
RUN set -xe \
59
59
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
60
- && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c " \
60
+ && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440 " \
61
61
&& mkdir -p /usr/src/rebar3-src \
62
62
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
63
63
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.21
2
2
3
3
ENV OTP_VERSION="27.3.4" \
4
- REBAR3_VERSION="3.24 .0"
4
+ REBAR3_VERSION="3.25 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
8
8
RUN set -xe \
9
9
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/releases/download/OTP-${OTP_VERSION}/otp_src_${OTP_VERSION}.tar.gz" \
10
10
&& OTP_DOWNLOAD_SHA256="c3a0a0b51df08f877eed88378f3d2da7026a75b8559803bd78071bb47cd4783b" \
11
- && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c " \
11
+ && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440 " \
12
12
&& apk add --no-cache --virtual .fetch-deps \
13
13
curl \
14
14
ca-certificates \
Original file line number Diff line number Diff line change 1
1
FROM debian:bookworm
2
2
3
3
ENV OTP_VERSION="27.3.4" \
4
- REBAR3_VERSION="3.24 .0"
4
+ REBAR3_VERSION="3.25 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
@@ -47,7 +47,7 @@ RUN set -xe \
47
47
&& make install ) \
48
48
&& find /usr/local -name examples | xargs rm -rf \
49
49
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
50
- && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c " \
50
+ && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440 " \
51
51
&& mkdir -p /usr/src/rebar3-src \
52
52
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
53
53
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
Original file line number Diff line number Diff line change 1
1
FROM buildpack-deps:bookworm
2
2
3
3
ENV OTP_VERSION="28.0" \
4
- REBAR3_VERSION="3.24 .0"
4
+ REBAR3_VERSION="3.25 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
@@ -57,7 +57,7 @@ RUN set -xe \
57
57
58
58
RUN set -xe \
59
59
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
60
- && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c " \
60
+ && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440 " \
61
61
&& mkdir -p /usr/src/rebar3-src \
62
62
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
63
63
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.21
2
2
3
3
ENV OTP_VERSION="28.0" \
4
- REBAR3_VERSION="3.24 .0"
4
+ REBAR3_VERSION="3.25 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
8
8
RUN set -xe \
9
9
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/releases/download/OTP-${OTP_VERSION}/otp_src_${OTP_VERSION}.tar.gz" \
10
10
&& OTP_DOWNLOAD_SHA256="71b5bf16e5b7b5d9fae98576c87aceac447964aaa3b4b457a5f60906839af92c" \
11
- && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c " \
11
+ && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440 " \
12
12
&& apk add --no-cache --virtual .fetch-deps \
13
13
curl \
14
14
ca-certificates \
Original file line number Diff line number Diff line change 1
1
FROM debian:bookworm
2
2
3
3
ENV OTP_VERSION="28.0" \
4
- REBAR3_VERSION="3.24 .0"
4
+ REBAR3_VERSION="3.25 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
@@ -47,7 +47,7 @@ RUN set -xe \
47
47
&& make install ) \
48
48
&& find /usr/local -name examples | xargs rm -rf \
49
49
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
50
- && REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c " \
50
+ && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440 " \
51
51
&& mkdir -p /usr/src/rebar3-src \
52
52
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
53
53
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
You can’t perform that action at this time.
0 commit comments