Files
JFrog-Cloud-Installers/Openshift4/operator/artifactory-ha-operator/Dockerfile
Logeshwar Sekar 5eea6a893b Updated the RT 7.46.11 and Xray 3.60.2 versions for Openshift (#250)
* Changes in RT version 7.46.11 and Xray version 3.60.2

* Changes in RT and Xray versions 7.46.11 and 3.60.2
2022-11-28 15:35:49 +05:30

35 lines
962 B
Docker

# Build the manager binary
FROM quay.io/operator-framework/helm-operator:v1.25
LABEL name="JFrog Artifactory Enterprise Operator" \
description="Openshift operator to deploy JFrog Artifactory Enterprise based on the Red Hat Universal Base Image." \
vendor="JFrog" \
summary="JFrog Artifactory Enterprise Operator" \
com.jfrog.license_terms="https://jfrog.com/artifactory/eula/"
# Adding security checks for container vulnerability scan
USER root
RUN microdnf install yum \
&& yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical \
&& yum clean all \
&& microdnf clean all \
&& microdnf install gnutls \
&& microdnf install nettle \
&& microdnf update openssl-libs
RUN microdnf install sudo
RUN sudo -u helm bash
USER helm
COPY licenses/ /licenses
ENV HOME=/opt/helm
COPY watches.yaml ${HOME}/watches.yaml
COPY helm-charts ${HOME}/helm-charts
WORKDIR ${HOME}