Skip to content
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

fix erl build dependency #95

Merged
merged 11 commits into from
Mar 13, 2025
3 changes: 2 additions & 1 deletion builders/erlang_debian.Dockerfile
Original file line number Diff line number Diff line change
@@ -470,7 +470,8 @@ RUN . ~/.bashrc; \
--description "Concurrent, real-time, distributed functional language" \
--url "https://erlang-solutions.com" \
--license "$(determine-license ${erlang_version})" \
--depends 'procps, libc6' \
--depends 'procps, libc6, libsctp1' \
$(if [ "${os}:${os_version}" != "ubuntu:bionic" ]; then echo '--depends libncurses6'; else echo '--depends libncurses5'; fi) \
--depends $(apt-cache depends libssl-dev | grep Depends | grep -Eo 'libssl[0-9.]+') \
$(if [ "${os}:${os_version}" != "ubuntu:trusty" ]; then echo '--deb-compression xz'; fi) \
--deb-recommends 'libwxbase2.8-0 | libwxbase3.0-0 | libwxbase3.0-0v5, libwxgtk2.8-0 | libwxgtk3.0-0 | libwxgtk3.0-0v5 | libwxgtk3.0-gtk3-0v5' \