You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
537 B

FROM trufflesuite/ganache-cli:latest
RUN mkdir /home/ganache_db /home/ganache_keys
ENTRYPOINT ["node", \
"/app/ganache-core.docker.cli.js", \
"-a", "10", \
"-e", "1000", \
"-d", \
"-m", "myth like bonus scare over problem client lizard pioneer submit female collect", \
"-p", "8545", \
"-i", "5778", \
"--db", "/home/ganache_db/", \
"-v", \
"-h", "0.0.0.0", \
"--account_keys_path", "/home/ganache_keys/keys.json", \
"--allowUnlimitedContractSize", \
"--noVMErrorsOnRPCResponse" \
]