Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
15 lines
341 B
Docker
15 lines
341 B
Docker
FROM alpine:3.19
|
|
|
|
RUN apk update && \
|
|
apk upgrade && \
|
|
apk --no-cache add curl jq file
|
|
|
|
VOLUME /cometbft
|
|
WORKDIR /cometbft
|
|
EXPOSE 26656 26657
|
|
ENTRYPOINT ["/usr/bin/wrapper.sh"]
|
|
CMD ["node", "--proxy_app", "kvstore"]
|
|
STOPSIGNAL SIGTERM
|
|
|
|
COPY wrapper.sh /usr/bin/wrapper.sh
|
|
COPY config-template.toml /etc/cometbft/config-template.toml
|