-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathDockerfile.kueue
More file actions
45 lines (38 loc) · 1.83 KB
/
Copy pathDockerfile.kueue
File metadata and controls
45 lines (38 loc) · 1.83 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.26 AS build
ARG TARGETOS
ARG TARGETARCH
ARG TARGETPLATFORM
WORKDIR /workspace
COPY . .
WORKDIR /workspace/upstream/kueue
RUN ./build.sh
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:062c52ff973065752b0965787649db2bcf551a6c727a00e95a3eb42cebadbdab
RUN microdnf install -y lsof && microdnf clean all && rm -rf /var/cache/{dnf,yum}
WORKDIR /
COPY --from=build /workspace/upstream/kueue/src/bin/manager /
USER 65532:65532
LABEL com.redhat.component="Kueue"
LABEL name="kueue"
LABEL url="https://github.com/kubernetes-sigs/kueue"
LABEL vendor="Red Hat, Inc."
LABEL description="Kueue is a set of APIs and controller for job queueing. \
It is a job-level manager that decides when a job should \
be admitted to start (as in pods can be created) \
and when it should stop (as in active pods should be deleted)."
LABEL io.k8s.description="Kueue is a set of APIs and controller for job queueing. \
It is a job-level manager that decides when a job should \
be admitted to start (as in pods can be created) \
and when it should stop (as in active pods should be deleted)."
LABEL summary="Kueue is a set of APIs and controller for job queueing. \
It is a job-level manager that decides when a job should \
be admitted to start (as in pods can be created) \
and when it should stop (as in active pods should be deleted)."
LABEL io.k8s.display-name="Kueue"
LABEL io.openshift.tags="openshift,operand,kueue"
LABEL cpe="cpe:/a:redhat:kueue_operator:1.4::el9"
LABEL distribution-scope="public"
LABEL version="1.4.0"
LABEL release="1.4.0"
# Licenses
COPY --from=build /workspace/LICENSE /licenses/LICENSE
ENTRYPOINT ["/manager"]