Commit 6157bd77 authored by Heimo Stranner's avatar Heimo Stranner
Browse files

ovsc

parent 3c3a4cb0
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -68,6 +68,12 @@ build-mvn-non-root-21:
    DIR: mvn-non-root-21
    NAME: mvn-non-root-21

build-ovsc:
  extends: .build-base
  variables:
    DIR: ovsc
    NAME: ovsc

.mirror-base:
  stage: build
  resource_group: lock_docker_build_$FROM_$TO
+8 −0
Original line number Diff line number Diff line
@@ -38,12 +38,20 @@ For tests that use java, node, selenium, chromium

`registry.reset.inso-w.at/pub/docker/selenium-chromium:latest`

### Open VS Code

Perhaps you want to interact with the k8s cluster more directly. This version of Open VS Codee with kubectl already installed can help with that.

`registry.reset.inso-w.at/pub/docker/ovsc`

### Theia

Perhaps you want to interact with the k8s cluster more directly. This version of theia with kubectl already installed can help with that.

`registry.reset.inso-w.at/pub/docker/theia-k8s`

This option is deprecated and will be removed soon as it is no longer actively maintained upstream and newer versions can no longer be built. Please switch to Open VS Code (as described above).

## Debian with maven

A simple debian based maven installation with maven and jdk 21.

ovsc/Dockerfile

0 → 100644
+8 −0
Original line number Diff line number Diff line
FROM gitpod/openvscode-server
USER root
RUN curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /etc/apt/keyrings/kubernetes-archive-keyring.gpg
RUN echo "deb [signed-by=/etc/apt/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list
RUN apt-get update
RUN apt-get -y install kubectl
USER openvscode-server
RUN kubectl