Browse Source

Split CMD's param on space (#1523)

This is to avoid "ERROR: unknown flag: --proxy_app dummy" message when running "docker-compose up"
pull/1528/head
Max Levy 6 years ago
committed by Anton Kaliaev
parent
commit
12fc396101
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      networks/local/localnode/Dockerfile

+ 1
- 1
networks/local/localnode/Dockerfile View File

@ -9,7 +9,7 @@ VOLUME [ /tendermint ]
WORKDIR /tendermint
EXPOSE 46656 46657
ENTRYPOINT ["/usr/bin/wrapper.sh"]
CMD ["node", "--proxy_app dummy"]
CMD ["node", "--proxy_app", "dummy"]
STOPSIGNAL SIGTERM
COPY wrapper.sh /usr/bin/wrapper.sh


Loading…
Cancel
Save