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.

15 lines
350 B

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