migrated to fedora 43 from rawhide to fix build issues

This commit is contained in:
Donato Capitella
2025-11-16 10:04:39 +00:00
parent a164b2308b
commit 7e583193d0
11 changed files with 108 additions and 22 deletions
+10 -2
View File
@@ -1,5 +1,7 @@
# build
FROM registry.fedoraproject.org/fedora:rawhide AS builder
FROM registry.fedoraproject.org/fedora:43 AS builder
# Toggle llama.cpp PR 15405 (RPC perf for large models)
ARG APPLY_LLAMA_PR_15405=1
RUN dnf -y --nodocs --setopt=install_weak_deps=False install \
make gcc cmake lld clang clang-devel compiler-rt libcurl-devel \
@@ -59,6 +61,12 @@ RUN chmod +x build-rocwmma.sh && ./build-rocwmma.sh
WORKDIR /opt/llama.cpp
RUN git clone --recursive https://github.com/ggerganov/llama.cpp.git . \
&& git clean -xdf \
&& if [ "${APPLY_LLAMA_PR_15405}" = "1" ]; then \
git config user.email "builder@localhost"; \
git config user.name "Container Builder"; \
git fetch origin pull/15405/head:pr-15405; \
git merge --no-edit pr-15405; \
fi \
&& git submodule update --recursive
COPY ./apply-rocwmma-fix.sh /opt/apply-rocwmma-fix.sh
@@ -74,7 +82,7 @@ RUN cmake -S . -B build \
&& cmake --install build --config Release
# runtime
FROM registry.fedoraproject.org/fedora-minimal:rawhide
FROM registry.fedoraproject.org/fedora-minimal:43
RUN microdnf -y --nodocs --setopt=install_weak_deps=0 install \
bash ca-certificates libatomic libstdc++ libgcc radeontop vim \