github.com/ari-anchor/sei-tendermint@v0.0.0-20230519144642-dc826b7b56bb/networks/local/localnode/Dockerfile (about) 1 FROM alpine:3.7 2 3 RUN apk update && \ 4 apk upgrade && \ 5 apk --no-cache add curl jq file 6 7 VOLUME [ /tendermint ] 8 WORKDIR /tendermint 9 EXPOSE 26656 26657 10 ENTRYPOINT ["/usr/bin/wrapper.sh"] 11 CMD ["node", "--proxy-app", "kvstore"] 12 STOPSIGNAL SIGTERM 13 14 COPY wrapper.sh /usr/bin/wrapper.sh 15 COPY config-template.toml /etc/tendermint/config-template.toml