forked from rhdhorchestrator/orchestrator-helm-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
31 lines (28 loc) · 1.53 KB
/
Dockerfile
File metadata and controls
31 lines (28 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Build the manager binary
FROM quay.io/orchestrator/helm-operator:v1.35.0-cve-fixes-12NOV24
LABEL com.redhat.component="RHDH Orchestrator Helm Operator"
LABEL distribution-scope="public"
LABEL name="rhdh-orchestrator-helm-operator-bundle"
LABEL release="1.3.0"
LABEL version="1.3.0"
LABEL maintainer="Red Hat [email protected]"
LABEL url="https://github.com/parodos-dev/orchestrator-helm-operator"
LABEL vendor="Red Hat, Inc."
LABEL description="RHDH Orchestrator introduces serverless asynchronous workflows to Backstage, \
with a focus on facilitating the transition of applications to the cloud, \
onboarding developers, and enabling users to create workflows for backstage \
actions or external systems."
LABEL io.k8s.description="RHDH Orchestrator introduces serverless asynchronous workflows to Backstage, \
with a focus on facilitating the transition of applications to the cloud, \
onboarding developers, and enabling users to create workflows for backstage \
actions or external systems."
LABEL summary="RHDH Orchestrator introduces serverless asynchronous workflows to Backstage, \
with a focus on facilitating the transition of applications to the cloud, \
onboarding developers, and enabling users to create workflows for backstage \
actions or external systems."
LABEL io.k8s.display-name="RHDH Orchestrator Helm Operator"
LABEL io.openshift.tags="openshift,operator,rhdh,orchestrator"
ENV HOME=/opt/helm
COPY watches.yaml ${HOME}/watches.yaml
COPY helm-charts ${HOME}/helm-charts
WORKDIR ${HOME}