Skip to content
Snippets Groups Projects
Select Git revision
  • 1cb407f890c0901b45f3d23ee96c644e948d2327
  • main default protected
  • release
  • master-interface-proto4
  • ozg-5634-ozgcloud-ingress
  • OZG-3322_connect_to_mongodb_over_tls
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.0
  • 2.11.0
  • 2.10.1
  • 2.10.0
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.1
  • 2.5.0
  • 2.4.0
26 results

mvnw

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"]