Attempt to fix install of clang within runtime Dockerfile

This commit is contained in:
Luke Parker
2025-08-09 02:02:30 -04:00
parent 8aaf7f7dc6
commit d9f854b08a

View File

@@ -8,7 +8,7 @@ RUN rm -rf /etc/apt/sources.list.d/debian.sources && \
apt update apt update
# Install dependencies # 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 # Add the wasm toolchain
RUN rustup target add wasm32-unknown-unknown RUN rustup target add wasm32-unknown-unknown