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"]