-
Notifications
You must be signed in to change notification settings - Fork 2.5k
erlang rebar3 3.26.0 #20658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
getong
wants to merge
1
commit into
docker-library:master
Choose a base branch
from
getong:rebar-3.26.0
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
erlang rebar3 3.26.0 #20658
+6
−6
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Diff for a75e713:diff --git a/_bashbrew-cat b/_bashbrew-cat
index 9320a76..822fb33 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -33,32 +33,32 @@ Directory: 25/slim
Tags: 26.2.5.16, 26.2.5, 26.2, 26
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
Directory: 26
Tags: 26.2.5.16-alpine, 26.2.5-alpine, 26.2-alpine, 26-alpine
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
Directory: 26/alpine
Tags: 26.2.5.16-slim, 26.2.5-slim, 26.2-slim, 26-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
Directory: 26/slim
Tags: 27.3.4.6, 27.3.4, 27.3, 27
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
Directory: 27
Tags: 27.3.4.6-alpine, 27.3.4-alpine, 27.3-alpine, 27-alpine
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
Directory: 27/alpine
Tags: 27.3.4.6-slim, 27.3.4-slim, 27.3-slim, 27-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 62e6fc0868389876f81ae917fb71e519a0d88b80
+GitCommit: be0fdf13887e211f680e9279f782f98e28abdc93
Directory: 27/slim
Tags: 28.3.1.0, 28.3.1, 28.3, 28, latest
diff --git a/erlang_26-alpine/Dockerfile b/erlang_26-alpine/Dockerfile
index 4cdda57..7771308 100644
--- a/erlang_26-alpine/Dockerfile
+++ b/erlang_26-alpine/Dockerfile
@@ -1,14 +1,14 @@
FROM alpine:3.20
ENV OTP_VERSION="26.2.5.16" \
- REBAR3_VERSION="3.25.0"
+ REBAR3_VERSION="3.26.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="f145ea6aa8cb9c15fac7d7905fbd530c25420d11f4e23c5c3df6ccf27584625c" \
- && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+ && REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
&& apk add --no-cache --virtual .fetch-deps \
curl \
ca-certificates \
diff --git a/erlang_26-slim/Dockerfile b/erlang_26-slim/Dockerfile
index 215477d..5ecf362 100644
--- a/erlang_26-slim/Dockerfile
+++ b/erlang_26-slim/Dockerfile
@@ -1,7 +1,7 @@
FROM debian:bookworm
ENV OTP_VERSION="26.2.5.16" \
- REBAR3_VERSION="3.25.0"
+ REBAR3_VERSION="3.26.0"
LABEL org.opencontainers.image.version=$OTP_VERSION
@@ -47,7 +47,7 @@ RUN set -xe \
&& make install ) \
&& find /usr/local -name examples | xargs rm -rf \
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
- && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+ && REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
&& mkdir -p /usr/src/rebar3-src \
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
diff --git a/erlang_26/Dockerfile b/erlang_26/Dockerfile
index aa4e387..f1f7324 100644
--- a/erlang_26/Dockerfile
+++ b/erlang_26/Dockerfile
@@ -1,7 +1,7 @@
FROM buildpack-deps:bookworm
ENV OTP_VERSION="26.2.5.16" \
- REBAR3_VERSION="3.25.0"
+ REBAR3_VERSION="3.26.0"
LABEL org.opencontainers.image.version=$OTP_VERSION
@@ -58,7 +58,7 @@ RUN set -xe \
RUN set -xe \
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
- && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+ && REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
&& mkdir -p /usr/src/rebar3-src \
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
diff --git a/erlang_27-alpine/Dockerfile b/erlang_27-alpine/Dockerfile
index bdba1a8..9a9f6a9 100644
--- a/erlang_27-alpine/Dockerfile
+++ b/erlang_27-alpine/Dockerfile
@@ -1,14 +1,14 @@
FROM alpine:3.22
ENV OTP_VERSION="27.3.4.6" \
- REBAR3_VERSION="3.25.0"
+ 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="658529f94cc5b8833907aa680a5e979e67c32dd6ebba69ed3b90b95f526ccda2" \
- && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+ && REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
&& apk add --no-cache --virtual .fetch-deps \
curl \
ca-certificates \
diff --git a/erlang_27-slim/Dockerfile b/erlang_27-slim/Dockerfile
index c422bf7..9414135 100644
--- a/erlang_27-slim/Dockerfile
+++ b/erlang_27-slim/Dockerfile
@@ -1,7 +1,7 @@
FROM debian:bookworm
ENV OTP_VERSION="27.3.4.6" \
- REBAR3_VERSION="3.25.0"
+ REBAR3_VERSION="3.26.0"
LABEL org.opencontainers.image.version=$OTP_VERSION
@@ -47,7 +47,7 @@ RUN set -xe \
&& make install ) \
&& find /usr/local -name examples | xargs rm -rf \
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
- && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+ && REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
&& mkdir -p /usr/src/rebar3-src \
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
diff --git a/erlang_27/Dockerfile b/erlang_27/Dockerfile
index 33aa29f..42abe4e 100644
--- a/erlang_27/Dockerfile
+++ b/erlang_27/Dockerfile
@@ -1,7 +1,7 @@
FROM buildpack-deps:bookworm
ENV OTP_VERSION="27.3.4.6" \
- REBAR3_VERSION="3.25.0"
+ REBAR3_VERSION="3.26.0"
LABEL org.opencontainers.image.version=$OTP_VERSION
@@ -57,7 +57,7 @@ RUN set -xe \
RUN set -xe \
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
- && REBAR3_DOWNLOAD_SHA256="7d3f42dc0e126e18fb73e4366129f11dd37bad14d404f461e0a3129ce8903440" \
+ && REBAR3_DOWNLOAD_SHA256="a151dc4a07805490e9f217a099e597ac9774814875f55da2c66545c333fdff64" \
&& mkdir -p /usr/src/rebar3-src \
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \Relevant Maintainers:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.