From ba61603ea6e525bc5f924d81ba98729b3c37ac32 Mon Sep 17 00:00:00 2001 From: Robert Sturla Date: Sat, 28 Oct 2023 21:37:12 +0100 Subject: [PATCH] fix: revert DevPod to latest available RPM (v0.3.7) (#627) --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index c6e8ca93154..0d0a0f0e5e4 100644 --- a/Containerfile +++ b/Containerfile @@ -137,8 +137,8 @@ RUN curl -Lo ./kind "https://github.com/kubernetes-sigs/kind/releases/latest/dow mv ./kind /usr/bin/kind # Install DevPod -RUN rpm-ostree install $(curl https://api.github.com/repos/loft-sh/devpod/releases/latest | jq -r '.assets[] | select(.name| test(".*x86_64.rpm$")).browser_download_url') && \ - wget https://github.com/loft-sh/devpod/releases/latest/download/devpod-linux-amd64 -O /tmp/devpod && \ +RUN rpm-ostree install https://github.com/loft-sh/devpod/releases/download/v0.3.7/DevPod_linux_x86_64.rpm && \ + wget https://github.com/loft-sh/devpod/releases/download/v0.3.7/devpod-linux-amd64 -O /tmp/devpod && \ install -c -m 0755 /tmp/devpod /usr/bin # Install kns/kctx and add completions for Bash