diff --git a/docker/risc0/Dockerfile b/docker/risc0/Dockerfile index 2e0c204..04eaa8c 100644 --- a/docker/risc0/Dockerfile +++ b/docker/risc0/Dockerfile @@ -20,7 +20,7 @@ RUN /tmp/install_risc0_sdk.sh # Verify Risc0 installation (script also does this, but good for Dockerfile sanity) RUN echo "Verifying Risc0 installation in Dockerfile (post-script)..." && cargo risczero --version -# --- Run tests --- +# Run tests RUN echo "Running tests for ere-risczero library..." && \ cargo test --release -p ere-risczero --lib -- --color always diff --git a/docker/sp1/Dockerfile b/docker/sp1/Dockerfile index 2864393..cc0bfa8 100644 --- a/docker/sp1/Dockerfile +++ b/docker/sp1/Dockerfile @@ -36,7 +36,7 @@ RUN cargo prove --version WORKDIR /app COPY . . -# --- Test Execution Step (for the ere-sp1 library) --- +# Run tests RUN echo "Running tests for ere-sp1 library..." && \ cargo test --release -p ere-sp1 --lib -- --color always