Skip to content

Commit a7f9ce9

Browse files
authored
chore: fix build (#3522)
# What does this PR do? error: https://github.com/llamastack/llama-stack-ops/actions/runs/17932015232/job/50990948479 ## Test Plan GITHUB_ACTIONS=true BUILD_PLATFORM=linux/amd64 USE_COPY_NOT_MOUNT=true LLAMA_STACK_DIR=. uv run --with llama-stack llama stack build --distro starter --image-type container --image-name ehhuang/distribution-starter succeeds
1 parent 8d82619 commit a7f9ce9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llama_stack/core/build_container.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ WORKDIR /app
147147
148148
RUN dnf -y update && dnf install -y iputils git net-tools wget \
149149
vim-minimal python3.12 python3.12-pip python3.12-wheel \
150-
python3.12-setuptools python3.12-devel gcc make && \
150+
python3.12-setuptools python3.12-devel gcc gcc-c++ make && \
151151
ln -s /bin/pip3.12 /bin/pip && ln -s /bin/python3.12 /bin/python && dnf clean all
152152
153153
ENV UV_SYSTEM_PYTHON=1
@@ -164,7 +164,7 @@ RUN apt-get update && apt-get install -y \
164164
procps psmisc lsof \
165165
traceroute \
166166
bubblewrap \
167-
gcc \
167+
gcc g++ \
168168
&& rm -rf /var/lib/apt/lists/*
169169
170170
ENV UV_SYSTEM_PYTHON=1

0 commit comments

Comments
 (0)