From ab6db4674abfcf993bbb3c4729e832eb185c9c88 Mon Sep 17 00:00:00 2001 From: Dimitar Manov <99065541+dimitarmanov@users.noreply.github.com> Date: Wed, 11 Jun 2025 09:51:40 +0300 Subject: [PATCH] Fix dockerfile --- Dockerfile.contracts | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/Dockerfile.contracts b/Dockerfile.contracts index 5ccd2b2073..27dfb35d69 100644 --- a/Dockerfile.contracts +++ b/Dockerfile.contracts @@ -2,11 +2,6 @@ FROM dmanov/go-ethereum:dev-latest COPY devnet /root/.ethereum -CMD [ - "geth", - "--dev", - "--http", - "--http.addr", "0.0.0.0", - "--http.api", "eth,net,web3,personal", - "--allow-insecure-unlock" -] \ No newline at end of file +ENTRYPOINT ["geth"] + +CMD ["--dev", "--http", "--http.addr", "0.0.0.0", "--http.api", "eth,net,web3", "--allow-insecure-unlock"]