From 364ca3daa0eab69bcec9f2b70cb08ee8b69e5ab3 Mon Sep 17 00:00:00 2001 From: Kevin Minehart Date: Wed, 30 Aug 2023 12:26:35 -0500 Subject: [PATCH] Docker: Add musl as a ubuntu dependency (#74127) Add musl as a ubuntu dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9f985a32966..de191ba34a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -111,7 +111,7 @@ RUN if grep -i -q alpine /etc/issue; then \ elif grep -i -q ubuntu /etc/issue; then \ DEBIAN_FRONTEND=noninteractive && \ apt-get update && \ - apt-get install -y ca-certificates curl tzdata && \ + apt-get install -y ca-certificates curl tzdata musl && \ apt-get autoremove -y && \ rm -rf /var/lib/apt/lists/*; \ else \