Skip to content
Snippets Groups Projects
Select Git revision
  • 8aa6e5a9f1faef57505e6511e0719f2d83a28a3b
  • main default protected
  • storybook-improvements
  • OZG-7287-forward-saml-token
  • release-administration
  • OZG-8422-BenutzerSpeichern
  • OZG-8314-Alfa-Vorgang-Bearbeiter-Zuweisung-entfernen
  • release-info
  • release
  • OZG-7856_schadcode-scanner-e2e
  • OZG-7985-fix-sorting
  • OZG-8305-Create-webpack-sbom
  • tooltip-improvements
  • OZG-7714-UpgradeKeycloakDependencyTo25
  • OZG-8086-Admin-Datenanfrage-erstellen
  • OZG-8086-Datenanfrage-Umbenennung
  • mongodb-7-0-16-e2e
  • OZG-6220-Bescheid-speichern-ohne-Postfach
  • OZG-7922-KeycloakOperatorExceptions
  • OZG-8142-poc-cards
  • OZG-8086-E2E
  • 1.12.1-administration
  • 1.12.0-administration
  • 1.12.0-info
  • 2.27.0-alfa
  • 1.11.0-info
  • 1.11.0-administration
  • 2.26.0-alfa
  • 1.10.0-info
  • 1.10.0-administration
  • 2.25.0-alfa
  • 1.9.0-info
  • 1.9.0-administration
  • 2.24.0-alfa
  • 1.8.0-info
  • 1.8.0-administration
  • 2.23.0-alfa
  • 1.7.0-info
  • 1.7.0-administration
  • 2.22.0-alfa
  • 1.6.0-info
41 results

proxy.conf.mjs

Blame
  • Dockerfile 995 B
    FROM ubuntu:22.04
    
    ARG OPENJDK_VERSION=17
    ARG HELM_VERSION=3
    
    ENV LANG C.UTF-8
    
    RUN apt update \
      && apt upgrade -y \
      && apt install -y \
            git \
            openjdk-${OPENJDK_VERSION}-jdk \
            wget \
            curl \
            openssh-server \
            unzip
    
    RUN wget https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-${HELM_VERSION} -O get-helm.sh \
      && chmod +x get-helm.sh \
      && ./get-helm.sh \
      && rm get-helm.sh
    
    RUN helm plugin install https://github.com/quintush/helm-unittest
    
    RUN wget https://get.docker.com -O get-docker.sh \
      && chmod +x get-docker.sh \
      && ./get-docker.sh \
      && rm get-docker.sh
    
    RUN mkdir /run/sshd
    
    RUN wget https://github.com/jeremylong/DependencyCheck/releases/download/v8.2.1/dependency-check-8.2.1-release.zip -O dependency-check.zip \
      && unzip dependency-check.zip \
      && mkdir /dependency-check-data \
      && dependency-check/bin/dependency-check.sh -d /dependency-check-data --updateonly
    
    EXPOSE 22
    
    CMD ["/usr/sbin/sshd", "-D"]