From 115d0eeaaae7f614f9faaf82c13426e608d86350 Mon Sep 17 00:00:00 2001 From: Anmol1696 Date: Wed, 19 Jun 2024 15:06:21 +0530 Subject: [PATCH 1/4] add various versions of cosmjs to version --- starship/docker/faucet/cosmjs-faucet/versions.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/starship/docker/faucet/cosmjs-faucet/versions.yaml b/starship/docker/faucet/cosmjs-faucet/versions.yaml index 49bf98ff..507b154e 100644 --- a/starship/docker/faucet/cosmjs-faucet/versions.yaml +++ b/starship/docker/faucet/cosmjs-faucet/versions.yaml @@ -1,5 +1,11 @@ base: node:16-alpine versions: + - v0.32.3 + - v0.32.2 + - v0.32.1 + - v0.32.0 + - v0.31.3 + - v0.31.2 - v0.31.1 - v0.31.0 - v0.30.1 From 27e9674a70a2b7b9a4fbdf1c17db10516a57c153 Mon Sep 17 00:00:00 2001 From: Anmol1696 Date: Wed, 19 Jun 2024 16:23:21 +0530 Subject: [PATCH 2/4] try and upgrade docker base image to node 20 --- starship/docker/faucet/cosmjs-faucet/versions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starship/docker/faucet/cosmjs-faucet/versions.yaml b/starship/docker/faucet/cosmjs-faucet/versions.yaml index 507b154e..a8111a27 100644 --- a/starship/docker/faucet/cosmjs-faucet/versions.yaml +++ b/starship/docker/faucet/cosmjs-faucet/versions.yaml @@ -1,4 +1,4 @@ -base: node:16-alpine +base: node:20-alpine versions: - v0.32.3 - v0.32.2 From 6df646155b187fc745e6277ee5a2271b60ba1a30 Mon Sep 17 00:00:00 2001 From: Anmol1696 Date: Mon, 24 Jun 2024 13:57:16 +0530 Subject: [PATCH 3/4] add yarn command --- starship/docker/faucet/cosmjs-faucet/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starship/docker/faucet/cosmjs-faucet/Dockerfile b/starship/docker/faucet/cosmjs-faucet/Dockerfile index c20320f5..b476c2c0 100644 --- a/starship/docker/faucet/cosmjs-faucet/Dockerfile +++ b/starship/docker/faucet/cosmjs-faucet/Dockerfile @@ -18,7 +18,7 @@ RUN rm -rf cosmjs.tar.gz RUN apk add --update --no-cache alpine-sdk linux-headers build-base gcc libusb-dev python3 py3-pip eudev-dev nodejs yarn RUN ln -sf python3 /usr/bin/python -RUN yarn cache clean --all && rm yarn.lock && yarn install --network-timeout 100000 +RUN yarn cache clean --all && rm yarn.lock && yarn && yarn install --network-timeout 100000 RUN yarn run build RUN (cd packages/faucet && SKIP_BUILD=1 yarn pack-node) From d1f1a50e6aa7cac166819db44a8589689da3440b Mon Sep 17 00:00:00 2001 From: Anmol1696 Date: Mon, 24 Jun 2024 17:14:37 +0530 Subject: [PATCH 4/4] try and run with node-16 instead --- starship/docker/faucet/cosmjs-faucet/versions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starship/docker/faucet/cosmjs-faucet/versions.yaml b/starship/docker/faucet/cosmjs-faucet/versions.yaml index a8111a27..507b154e 100644 --- a/starship/docker/faucet/cosmjs-faucet/versions.yaml +++ b/starship/docker/faucet/cosmjs-faucet/versions.yaml @@ -1,4 +1,4 @@ -base: node:20-alpine +base: node:16-alpine versions: - v0.32.3 - v0.32.2