fix: install libsctp1 to silence Erlang 29 SCTP warning

This commit is contained in:
Graham McIntire 2026-06-04 15:39:40 -05:00
parent a4b140beaf
commit 1eceb3664d
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -53,7 +53,7 @@ ARG BUILD_TIMESTAMP=unknown
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
libstdc++6 openssl libncurses6 locales ca-certificates && \
libstdc++6 openssl libncurses6 locales ca-certificates libsctp1 && \
sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen && \
apt-get clean && rm -rf /var/lib/apt/lists/* && \
useradd -r -u 1001 -g root -s /bin/false elixir