Skip to content

Commit 6d9b723

Browse files
chore(Dockerfile): add --package=${RBUILDER_BIN} to fix reth-rbuilder container (#250)
## 📝 Summary The addition of `default-members = ["crates/rbuilder"]` in #244 broke the ability to use `docker build --build-arg RBUILDER_BIN=reth-rbuilder` to build a `reth-rbuilder` container, this should re-enable it. ## 💡 Motivation and Context We're using the `reth-rbuilder` container in kurtosis for Pectra testing. --- ## ✅ I have completed the following steps: * [ ] Run `make lint` * [ ] Run `make test` * [ ] Added tests (if applicable) --------- Co-authored-by: liamaharon <[email protected]>
1 parent 70579d1 commit 6d9b723

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ COPY ./crates/ ./crates/
5757
RUN --mount=type=cache,target=/usr/local/cargo/registry \
5858
--mount=type=cache,target=/usr/local/cargo/git \
5959
--mount=type=cache,target=$SCCACHE_DIR,sharing=locked \
60-
cargo build --release --features="$FEATURES" --bin=${RBUILDER_BIN}
60+
cargo build --release --features="$FEATURES" --package=${RBUILDER_BIN}
6161

6262
#
6363
# Runtime container

0 commit comments

Comments
 (0)