From 029e4fc64d9017eed625c927a69e71fff9033727 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Thu, 20 Mar 2025 15:50:56 -0400 Subject: [PATCH] fix: Add missing gcc in container build. Fixes #1716 (#1727) # What does this PR do? This should fix https://github.com/meta-llama/llama-stack/issues/1716 ## Test Plan [Describe the tests you ran to verify your changes with result summaries. *Provide clear instructions so the plan can be easily re-executed.*] [//]: # (## Documentation) Signed-off-by: Yuan Tang --- llama_stack/distribution/build_container.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/llama_stack/distribution/build_container.sh b/llama_stack/distribution/build_container.sh index e949927d2..ed83b7bff 100755 --- a/llama_stack/distribution/build_container.sh +++ b/llama_stack/distribution/build_container.sh @@ -90,6 +90,7 @@ RUN apt-get update && apt-get install -y \ procps psmisc lsof \ traceroute \ bubblewrap \ + gcc \ && rm -rf /var/lib/apt/lists/* ENV UV_SYSTEM_PYTHON=1