-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (14 loc) · 560 Bytes
/
Dockerfile
File metadata and controls
18 lines (14 loc) · 560 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Build the manager binary
FROM quay.io/operator-framework/helm-operator:v1.42.0
### Required OpenShift Labels
LABEL name="Object Lease Operator" \
maintainer="magnus@ullberg.us" \
vendor="Magnus Ullberg" \
version="v1.0.0" \
release="1" \
summary="Object Lease Operator" \
description="Object Lease Operator is a operator which manages the time to live and expiration of objects on Kubernetes and OpenShift platforms."
ENV HOME=/opt/helm
COPY watches.yaml ${HOME}/watches.yaml
COPY helm-charts ${HOME}/helm-charts
WORKDIR ${HOME}