mirror of https://gitlab.com/ecentrics/concordia
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.
10 lines
286 B
10 lines
286 B
FROM trufflesuite/ganache-cli:latest
|
|
|
|
RUN mkdir /home/ganache_db /home/ganache_keys
|
|
|
|
WORKDIR /opt/concordia-ganache
|
|
|
|
COPY ./docker/ganache/start-blockchain.sh .
|
|
RUN ["chmod", "+x", "/opt/concordia-ganache/start-blockchain.sh"]
|
|
|
|
ENTRYPOINT ["/opt/concordia-ganache/start-blockchain.sh"]
|
|
|