From d9f854b08a21a86699939323a9c21dadbe593ba5 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 9 Aug 2025 02:02:30 -0400 Subject: [PATCH] Attempt to fix install of clang within runtime Dockerfile --- orchestration/runtime/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestration/runtime/Dockerfile b/orchestration/runtime/Dockerfile index 6ecc1f13..4fe23ed6 100644 --- a/orchestration/runtime/Dockerfile +++ b/orchestration/runtime/Dockerfile @@ -8,7 +8,7 @@ RUN rm -rf /etc/apt/sources.list.d/debian.sources && \ apt update # Install dependencies -RUN apt update && apt upgrade && apt install clang -y +RUN apt update && apt upgrade && apt install -y --fix-missing --fix-broken clang # Add the wasm toolchain RUN rustup target add wasm32-unknown-unknown