From e04c22c3b7826d3016a35366404fd3181a74c97b 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 22:02:54 +0300 Subject: [PATCH] [v9.4.x] Docker: Add musl as a ubuntu dependency (#74130) 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 530535d109f..bcb871c52ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -99,7 +99,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 \