mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
12 lines
215 B
Docker
12 lines
215 B
Docker
FROM dmanov/go-ethereum:dev-latest
|
|
|
|
COPY devnet /root/.ethereum
|
|
|
|
CMD [
|
|
"--dev",
|
|
"--http",
|
|
"--http.addr", "0.0.0.0",
|
|
"--http.api", "eth,net,web3,personal",
|
|
"--allow-insecure-unlock",
|
|
"--verbosity", "3"
|
|
]
|