diff --git a/clients/reth/Dockerfile b/clients/reth/Dockerfile index e4281cd46d..27c0789474 100644 --- a/clients/reth/Dockerfile +++ b/clients/reth/Dockerfile @@ -1,5 +1,7 @@ -ARG branch=main -FROM paradigmxyz/reth:$branch +ARG baseimage=paradigmxyz/reth +ARG tag=main + +FROM $baseimage:$tag as builder # Install script tools. RUN apt-get update -y