mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

* Fixed 2 PEP257 compliance errors * Upgrade Tendermint to 0.19.7 except for Docker image, which is still at 0.19.2
8 lines
182 B
Docker
8 lines
182 B
Docker
ARG tm_version=0.19.2
|
|
FROM tendermint/tendermint:${tm_version}
|
|
LABEL maintainer "dev@bigchaindb.com"
|
|
WORKDIR /
|
|
USER root
|
|
RUN apk --update add bash
|
|
ENTRYPOINT ["/usr/bin/tendermint"]
|