From 833e7b2713e3b619cc097f73eefef44e98b1d219 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Fri, 4 Sep 2026 06:54:16 +0000 Subject: [PATCH] haqq: add missing cometbft-common.sh COPY to Dockerfile --- haqq/haqq.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/haqq/haqq.Dockerfile b/haqq/haqq.Dockerfile index a24a955d..530a3987 100644 --- a/haqq/haqq.Dockerfile +++ b/haqq/haqq.Dockerfile @@ -3,8 +3,9 @@ ARG HAQQ_HAQQ_VERSION FROM ${HAQQ_HAQQ_IMAGE}:${HAQQ_HAQQ_VERSION} USER root +COPY ./scripts/cometbft-common.sh /usr/local/bin/cometbft-common.sh COPY ./scripts/init.sh /usr/local/bin/init.sh -RUN chmod +x /usr/local/bin/init.sh +RUN chmod +x /usr/local/bin/init.sh /usr/local/bin/cometbft-common.sh ENTRYPOINT [ "init.sh" ] \ No newline at end of file