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.

16 lines
394 B

  1. FROM alpine:3.7
  2. MAINTAINER Greg Szabo <greg@tendermint.com>
  3. RUN apk update && \
  4. apk upgrade && \
  5. apk --no-cache add curl jq file
  6. VOLUME [ /tendermint ]
  7. WORKDIR /tendermint
  8. EXPOSE 26656 26657
  9. ENTRYPOINT ["/usr/bin/wrapper.sh"]
  10. CMD ["node", "--proxy_app", "kvstore"]
  11. STOPSIGNAL SIGTERM
  12. COPY wrapper.sh /usr/bin/wrapper.sh
  13. COPY config-template.toml /etc/tendermint/config-template.toml