mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
6 lines
89 B
Docker
6 lines
89 B
Docker
FROM node:20.9.0
|
|
WORKDIR /hardhat
|
|
COPY . .
|
|
EXPOSE 8545
|
|
CMD [ "npx", "hardhat", "node" ]
|
|
|