diff --git a/Dockerfile b/Dockerfile index 4d74c872b0..5b701f0fd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,8 +68,10 @@ RUN cargo build --profile dist --bin ironclaw # Stage 4b: Build all WASM extensions from source (only used by runtime-staging) FROM builder AS wasm-builder +ARG CACHE_BUST RUN apt-get update && apt-get install -y --no-install-recommends jq && rm -rf /var/lib/apt/lists/* +RUN echo "cache-bust=${CACHE_BUST}" RUN set -eux; \ mkdir -p /app/wasm-bundles/tools /app/wasm-bundles/channels; \