From 75a10ff672264e32087c192081c94544066d3fcb Mon Sep 17 00:00:00 2001 From: Lyn <0xlynett@proton.me> Date: Wed, 15 May 2024 16:42:55 +0000 Subject: [PATCH] cache busting --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 557030c8..fd6d6b75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,8 @@ WORKDIR /tmp/download RUN apt-get update RUN apt-get install wget curl openssl jq unzip -y -RUN wget "https://github.com/kinode-dao/kinode/releases/download/$(curl https://api.github.com/repos/kinode-dao/kinode/releases | jq -r '.[0].tag_name')/kinode-x86_64-unknown-linux-gnu.zip" +ADD https://api.github.com/repos/kinode-dao/kinode/releases releases.json +RUN wget "https://github.com/kinode-dao/kinode/releases/download/$(cat releases.json | jq -r '.[0].tag_name')/kinode-x86_64-unknown-linux-gnu.zip" RUN unzip kinode-x86_64-unknown-linux-gnu.zip FROM debian:12-slim