From 62f674c9a0bae588d882db8539d84ab5731db62d Mon Sep 17 00:00:00 2001 From: floor-licker Date: Thu, 6 Nov 2025 15:17:00 -0500 Subject: [PATCH] fix cosmos sidechain dockerfile to use existing ignite cli version v28.11.2 instead of non-existent v28.3.0, resolves container startup failure where ignite command was not found --- cosmos/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmos/Dockerfile b/cosmos/Dockerfile index b33e89277..551c5d0a2 100644 --- a/cosmos/Dockerfile +++ b/cosmos/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update -y \ && apt-get install -y zlib1g-dev make g++ wget libncursesw5 libtool autoconf tmux \ && apt-get clean -RUN bash -c "curl https://get.ignite.com/cli@v28.3.0! | bash" +RUN bash -c "curl https://get.ignite.com/cli@v28.11.2! | bash" RUN bash -c "echo export GOFLAGS='-buildvcs=false' >> $HOME/.bashrc" RUN bash -c "source $HOME/.bashrc"