-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Test with CometBFT v0.38.2 (#210)
* ci: Test with CometBFT v0.38.0 Signed-off-by: Thane Thomson <[email protected]> * Ensure group exists Signed-off-by: Thane Thomson <[email protected]> * Update directories for CometBFT Signed-off-by: Thane Thomson <[email protected]> * Bump Comet version used to v0.38.2 Signed-off-by: Thane Thomson <[email protected]> --------- Signed-off-by: Thane Thomson <[email protected]>
- Loading branch information
1 parent
8aeb5fe
commit 6158245
Showing
4 changed files
with
31 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM tendermint/tendermint:v0.34.24 | ||
FROM cometbft/cometbft:v0.38.2 | ||
LABEL maintainer="[email protected]" | ||
|
||
ARG UID | ||
|
@@ -10,19 +10,21 @@ RUN apk update && \ | |
apk upgrade && \ | ||
apk --no-cache add curl jq file shadow | ||
|
||
RUN groupadd -g ${GID} tmgroup || true | ||
|
||
# Set the tmuser's UID and GID to the preconfigured values to match the host's | ||
# UID/GID combo. Otherwise permissions become difficult to manage. | ||
RUN usermod -u ${UID} -g ${GID} tmuser | ||
|
||
USER tmuser | ||
|
||
VOLUME /tendermint | ||
WORKDIR /tendermint | ||
VOLUME /cometbft | ||
WORKDIR /cometbft | ||
|
||
EXPOSE 26656 26657 | ||
ENTRYPOINT ["/usr/bin/entrypoint.sh"] | ||
CMD ["node", "--proxy_app", "kvstore"] | ||
STOPSIGNAL SIGTERM | ||
|
||
COPY entrypoint.sh /usr/bin/entrypoint.sh | ||
COPY config-template.toml /etc/tendermint/config-template.toml | ||
COPY config-template.toml /etc/cometbft/config-template.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters