diff --git a/clients/ethrex/Dockerfile b/clients/ethrex/Dockerfile index c7d3fb455f..c518e6dd84 100644 --- a/clients/ethrex/Dockerfile +++ b/clients/ethrex/Dockerfile @@ -1,7 +1,13 @@ -ARG baseimage=ghcr.io/lambdaclass/ethrex +# This is the image we build on a push to main +# We do have a problem, if we're testing locally it doesn't show changes +# Removing this from here now, but the upstream version should use the ghcr.io version +# For now, users needs to build locally ethrex +# ARG baseimage=ghcr.io/lambdaclass/ethrex +ARG baseimage=ethrex + ARG tag=latest -FROM $baseimage:$tag as builder +FROM $baseimage:$tag AS builder # Install script tools. RUN apt-get update -y