From 732fd703bfa0f1492c2f8ee78438a4286a1d351e Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 22 Jun 2023 22:31:28 +0100 Subject: [PATCH] feat(dx): install devpod and devpod cli (#291) --- Containerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Containerfile b/Containerfile index 43764a1231e..de90ae29176 100644 --- a/Containerfile +++ b/Containerfile @@ -77,6 +77,12 @@ COPY --from=cgr.dev/chainguard/helm:latest /usr/bin/helm /usr/bin/helm COPY --from=cgr.dev/chainguard/ko:latest /usr/bin/ko /usr/bin/ko COPY --from=cgr.dev/chainguard/minio-client:latest /usr/bin/mc /usr/bin/mc +# Install DevPod +RUN wget https://github.com/loft-sh/devpod/releases/latest/download/DevPod_linux_x86_64.rpm -O /tmp/devpod.rpm && \ + rpm-ostree install /tmp/devpod.rpm && \ + wget https://github.com/loft-sh/devpod/releases/latest/download/devpod-linux-amd64 -O /tmp/devpod && \ + install -c -m 0755 /tmp/devpod /usr/bin + RUN /tmp/workarounds.sh # Clean up repos, everything is on the image so we don't need them