From 2ce1da1bdba58e753e32bdaad9ff481ad3783a7f Mon Sep 17 00:00:00 2001 From: Javed Khan Date: Wed, 20 Mar 2024 08:09:57 -0700 Subject: [PATCH] feat(deps): switch to latest celestia-node --- Dockerfile | 4 ++-- entrypoint.sh | 11 ++--------- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 675c063..3aec488 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ghcr.io/celestiaorg/celestia-app:v1.7.0 AS celestia-app -FROM ghcr.io/rollkit/celestia-da:v0.12.9 +FROM ghcr.io/celestiaorg/celestia-node:v0.13.1 USER root @@ -18,6 +18,6 @@ COPY --from=celestia-app /bin/celestia-appd /bin/ COPY entrypoint.sh /opt/entrypoint.sh -EXPOSE 26650 26657 26658 26659 9090 +EXPOSE 26657 26658 26659 9090 ENTRYPOINT [ "/bin/bash", "/opt/entrypoint.sh" ] diff --git a/entrypoint.sh b/entrypoint.sh index dff9b11..380844b 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -73,17 +73,10 @@ done export CELESTIA_CUSTOM=test:$GENESIS echo "$CELESTIA_CUSTOM" -if [ -z "$CELESTIA_NAMESPACE" ]; then - CELESTIA_NAMESPACE=0000$(openssl rand -hex 8) -fi -echo CELESTIA_NAMESPACE="$CELESTIA_NAMESPACE" - -celestia-da bridge init --node.store /home/celestia/bridge -celestia-da bridge start \ +celestia bridge init --node.store /home/celestia/bridge +celestia bridge start \ --node.store $NODE_PATH --gateway \ --core.ip 127.0.0.1 \ --keyring.accname validator \ --gateway.addr 0.0.0.0 \ --rpc.addr 0.0.0.0 \ - --da.grpc.namespace "$CELESTIA_NAMESPACE" \ - --da.grpc.listen "0.0.0.0:26650"