From 2396cabd8fd601b0fb784d866bd5c7b1d9d76b51 Mon Sep 17 00:00:00 2001 From: "grafana-delivery-bot[bot]" <132647405+grafana-delivery-bot[bot]@users.noreply.github.com> Date: Wed, 30 Aug 2023 12:46:35 -0500 Subject: [PATCH] [v10.1.x] Docker: Add musl as a ubuntu dependency (#74133) Docker: Add musl as a ubuntu dependency (#74127) Add musl as a ubuntu dependency (cherry picked from commit 364ca3daa0eab69bcec9f2b70cb08ee8b69e5ab3) Co-authored-by: Kevin Minehart --- 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 \