Fix dockerfile

This commit is contained in:
Dimitar Manov 2025-06-11 09:51:40 +03:00
parent 000f64fffa
commit ab6db4674a

View file

@ -2,11 +2,6 @@ FROM dmanov/go-ethereum:dev-latest
COPY devnet /root/.ethereum COPY devnet /root/.ethereum
CMD [ ENTRYPOINT ["geth"]
"geth",
"--dev", CMD ["--dev", "--http", "--http.addr", "0.0.0.0", "--http.api", "eth,net,web3", "--allow-insecure-unlock"]
"--http",
"--http.addr", "0.0.0.0",
"--http.api", "eth,net,web3,personal",
"--allow-insecure-unlock"
]