Split CMD's param on space (#1523)

This is to avoid "ERROR: unknown flag: --proxy_app dummy" message when running "docker-compose up"
This commit is contained in:
Max Levy 2018-04-29 17:35:10 +03:00 committed by Anton Kaliaev
parent d3c4f746a7
commit 12fc396101

View File

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