Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
ARG THEIA_VERSION=v1.61.0
# 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-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/* .
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
Expand Down Expand Up @@ -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
Expand Down
Loading