-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDockerfile
More file actions
24 lines (22 loc) · 774 Bytes
/
Dockerfile
File metadata and controls
24 lines (22 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
ARG VERSION
# Build the manager binary
FROM quay.io/operator-framework/helm-operator:v1.8.0
ARG VERSION
LABEL name="Seldon Deploy Operator" \
vendor="Seldon Technologies" \
version=$VERSION \
release=$VERSION \
summary="Seldon Deploy Operator" \
description="Helm-based Operator for installing Seldon Deploy."
COPY deployenterpriselicense.txt /licenses/license.txt
USER root
RUN microdnf --setopt=install_weak_deps=0 install yum \
&& yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical \
&& yum clean all \
&& microdnf remove yum \
&& microdnf clean all
USER helm
ENV HOME=/opt/helm
COPY watches.yaml ${HOME}/watches.yaml
COPY helm-charts ${HOME}/helm-charts
WORKDIR ${HOME}