From 626771bee863b7492c1ce1707cb6d1b59381d44d Mon Sep 17 00:00:00 2001 From: Daniel S Date: Thu, 26 Jun 2025 11:01:41 +0200 Subject: [PATCH 1/3] chore: update version Signed-off-by: Daniel S --- build/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index 6e4e4ba..570d129 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update && \ apt-get install -y git jq libxkbfile-dev libsecret-1-dev # renovate: datasource=github-tags depName=eclipse-theia/theia-blueprint -ARG THEIA_VERSION=v1.61.0 +ARG THEIA_VERSION=v1.62.2 WORKDIR /tmp RUN git clone --depth 1 --branch ${THEIA_VERSION} https://github.com/eclipse-theia/theia-blueprint.git @@ -54,7 +54,7 @@ ARG KUBECTL_VERSION=v1.33.1 ARG TERRAFORM_VERSION=v1.12.2 # renovate: datasource=github-releases depName=terraform-linters/tflint ARG TFLINT_VERSION=v0.58.0 -ARG KUSTOMIZE_VERSION=v5.3.0 +ARG KUSTOMIZE_VERSION=v5.6.0 # renovate: datasource=github-tags depName=kubernetes/minikube ARG MINIKUBE_VERSION=v1.36.0 # renovate: datasource=github-tags depName=aquasecurity/trivy From abf4732e1213dd71182b0cd3d5e098e214bc20ae Mon Sep 17 00:00:00 2001 From: Daniel S Date: Thu, 26 Jun 2025 11:10:28 +0200 Subject: [PATCH 2/3] chore: change new git url for theia Signed-off-by: Daniel S --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 570d129..a2c2989 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update && \ ARG THEIA_VERSION=v1.62.2 WORKDIR /tmp -RUN git clone --depth 1 --branch ${THEIA_VERSION} https://github.com/eclipse-theia/theia-blueprint.git +RUN git clone --depth 1 --branch ${THEIA_VERSION} https://github.com/eclipse-theia/theia.git WORKDIR /home/theia RUN cp -r /tmp/theia-blueprint/* . From c27b53f99118fdd08fb0f99b1bb47f794af2d799 Mon Sep 17 00:00:00 2001 From: Daniel S Date: Thu, 26 Jun 2025 11:12:13 +0200 Subject: [PATCH 3/3] chore: remove blueprint stuff Signed-off-by: Daniel S --- build/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index a2c2989..8a16f10 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -5,14 +5,14 @@ FROM node:22-bookworm AS build-stage RUN apt-get update && \ apt-get install -y git jq libxkbfile-dev libsecret-1-dev -# renovate: datasource=github-tags depName=eclipse-theia/theia-blueprint +# renovate: datasource=github-tags depName=eclipse-theia/theia ARG THEIA_VERSION=v1.62.2 WORKDIR /tmp RUN git clone --depth 1 --branch ${THEIA_VERSION} https://github.com/eclipse-theia/theia.git WORKDIR /home/theia -RUN cp -r /tmp/theia-blueprint/* . +RUN cp -r /tmp/theia/* . COPY package.json.acend . COPY preload.html ./applications/browser/resources/preload.html # COPY branding-util.tsx ./theia-extensions/product/src/browser/branding-util.tsx