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
359 B
10 lines
359 B
FROM trufflesuite/ganache-cli:v6.12.2@sha256:c062707f17f355872d703cde3de6a12fc45a027ed42857c72514171a5f466ab7
|
|
|
|
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"]
|
|
|