From c19a9f835f7525092ac96c6db03612bf2901db1e Mon Sep 17 00:00:00 2001 From: 0xfourzerofour Date: Mon, 23 Oct 2023 12:01:50 -0400 Subject: [PATCH] chore(release): remove reth wording --- Dockerfile | 2 +- Dockerfile.cross | 2 +- Makefile | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6219df026..82cd6b804 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ WORKDIR /app # install curl for healthcheck RUN apt-get -y update; apt-get -y install curl -# Copy reth over from the build stage +# Copy rundler over from the build stage COPY --from=builder /app/target/release/rundler /usr/local/bin EXPOSE 3000 8080 diff --git a/Dockerfile.cross b/Dockerfile.cross index 3aa7c4e82..b5c0c55f7 100644 --- a/Dockerfile.cross +++ b/Dockerfile.cross @@ -1,6 +1,6 @@ # This image is meant to enable cross-architecture builds. -# It assumes the reth binary has already been compiled for `$TARGETPLATFORM` and is +# It assumes the rundler binary has already been compiled for `$TARGETPLATFORM` and is # locatable in `./dist/bin/$TARGETARCH` FROM --platform=$TARGETPLATFORM ubuntu:22.04 diff --git a/Makefile b/Makefile index 955aeb60c..31bc3c36c 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ test-spec-modular: ## Run spec tests in modular mode # Note: The additional rustc compiler flags are for intrinsics needed by MDBX. # See: https://github.com/cross-rs/cross/wiki/FAQ#undefined-reference-with-build-std build-%: - cross build --bin reth --target $* --profile "$(PROFILE)" + cross build --bin rundler --target $* --profile "$(PROFILE)" # Note: This requires a buildx builder with emulation support. For example: .PHONY: docker-build-latest @@ -43,11 +43,11 @@ docker-build-latest: ## Build and push a cross-arch Docker image tagged with the define build_docker_image $(MAKE) build-x86_64-unknown-linux-gnu mkdir -p $(BIN_DIR)/amd64 - cp $(BUILD_PATH)/x86_64-unknown-linux-gnu/$(PROFILE)/reth $(BIN_DIR)/amd64/reth + cp $(BUILD_PATH)/x86_64-unknown-linux-gnu/$(PROFILE)/rundler $(BIN_DIR)/amd64/rundler $(MAKE) build-aarch64-unknown-linux-gnu mkdir -p $(BIN_DIR)/arm64 - cp $(BUILD_PATH)/aarch64-unknown-linux-gnu/$(PROFILE)/reth $(BIN_DIR)/arm64/reth + cp $(BUILD_PATH)/aarch64-unknown-linux-gnu/$(PROFILE)/rundler $(BIN_DIR)/arm64/rundler docker buildx build --file ./Dockerfile.cross . \ --platform linux/amd64,linux/arm64 \