Skip to content

Commit dd27cf7

Browse files
authored
Merge pull request #751 from docker-library/docker-library-rabbitmq-749
Patch Erlang build on Alpine
2 parents 16db9e1 + 942e3c7 commit dd27cf7

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

3.13/alpine/Dockerfile

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

4.0/alpine/Dockerfile

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

4.1-rc/alpine/Dockerfile

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile-alpine.template

+5
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,11 @@ RUN set -eux; \
134134
echo "$OTP_SOURCE_SHA256 *$OTP_PATH.tar.gz" | sha256sum -c -; \
135135
tar --extract --file "$OTP_PATH.tar.gz" --directory "$OTP_PATH" --strip-components 1; \
136136
\
137+
# https://github.com/erlang/otp/pull/9212
138+
wget --output-document otp-9212.patch 'https://github.com/erlang/otp/commit/e2604aa7a92b3bb7c1293afd12705c7ce9c952a4.patch?full_index=1'; \
139+
echo '35ec51529bdd6cab4b173b4e1fe844efa82f74eba76a99a74f746778d64dffa7 *otp-9212.patch' | sha256sum -c -; \
140+
patch --input="$PWD/otp-9212.patch" --directory="$OTP_PATH" --strip=1; \
141+
\
137142
# Configure Erlang/OTP for compilation, disable unused features & applications
138143
# https://erlang.org/doc/applications.html
139144
# ERL_TOP is required for Erlang/OTP makefiles to find the absolute path for the installation

0 commit comments

Comments
 (0)