forked from openshift/cluster-logging-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.in
80 lines (66 loc) · 3.05 KB
/
Dockerfile.in
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#@follow_tag(registry-proxy.engineering.redhat.com/rh-osbs/openshift-golang-builder:rhel_8_golang_1.17)
FROM registry-proxy.engineering.redhat.com/rh-osbs/openshift-golang-builder:v1.17.12-202207291741.el8.g01211db AS builder
ENV BUILD_VERSION=${CI_CONTAINER_VERSION}
ENV OS_GIT_MAJOR=${CI_X_VERSION}
ENV OS_GIT_MINOR=${CI_Y_VERSION}
ENV OS_GIT_PATCH=${CI_Z_VERSION}
ENV SOURCE_GIT_COMMIT=${CI_CLUSTER_LOGGING_OPERATOR_UPSTREAM_COMMIT}
ENV SOURCE_GIT_URL=${CI_CLUSTER_LOGGING_OPERATOR_UPSTREAM_URL}
ENV REMOTE_SOURCES=${REMOTE_SOURCES:-.}
ENV REMOTE_SOURCES_DIR=${REMOTE_SOURCES_DIR:-.}
ENV APP_DIR=.
COPY $REMOTE_SOURCES $REMOTE_SOURCES_DIR
## EXCLUDE BEGIN ##
ENV APP_DIR=$REMOTE_SOURCES_DIR/cluster-logging-operator/app
WORKDIR $APP_DIR
RUN source $REMOTE_SOURCES_DIR/cluster-logging-operator/cachito.env
## EXCLUDE END ##
USER 0
RUN make build
#@follow_tag(registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-cli:v4.9)
FROM registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-cli:v4.9.0-202208150436.p0.gb49c285.assembly.stream AS origincli
#@follow_tag(registry.redhat.io/ubi8:latest)
FROM registry.redhat.io/ubi8:8.6-903
ENV APP_DIR=/opt/app-root/src
## EXCLUDE BEGIN ##
ENV APP_DIR=$REMOTE_SOURCES_DIR/cluster-logging-operator/app
WORKDIR $APP_DIR
## EXCLUDE END ##
RUN INSTALL_PKGS=" \
openssl \
rsync \
file \
xz \
" && \
yum install -y $INSTALL_PKGS && \
rpm -V $INSTALL_PKGS && \
yum clean all && \
mkdir /tmp/ocp-clo && \
chmod og+w /tmp/ocp-clo
COPY --from=builder $APP_DIR/bin/cluster-logging-operator /usr/bin/
COPY --from=builder $APP_DIR/scripts/* /usr/bin/scripts/
RUN mkdir -p /usr/share/logging/
COPY --from=builder $APP_DIR/files/ /usr/share/logging/
COPY --from=builder $APP_DIR/bundle/manifests /manifests
COPY --from=origincli /usr/bin/oc /usr/bin
COPY --from=builder $APP_DIR/must-gather/collection-scripts/* /usr/bin/
# this is required because the operator invokes a script as `bash scripts/cert_generation.sh`
WORKDIR /usr/bin
CMD ["/usr/bin/cluster-logging-operator"]
LABEL \
io.k8s.display-name="Cluster Logging Operator" \
io.k8s.description="This is a component of OpenShift Container Platform that manages the lifecycle of the Aggregated logging stack." \
io.openshift.tags="openshift,logging" \
com.redhat.delivery.appregistry="false" \
maintainer="AOS Logging <[email protected]>" \
License="Apache-2.0" \
name="openshift/ose-cluster-logging-operator" \
com.redhat.component="cluster-logging-operator-container" \
io.openshift.maintainer.product="OpenShift Container Platform" \
io.openshift.build.commit.id=${CI_CLUSTER_LOGGING_OPERATOR_UPSTREAM_COMMIT} \
io.openshift.build.source-location=${CI_CLUSTER_LOGGING_OPERATOR_UPSTREAM_URL} \
io.openshift.build.commit.url=${CI_CLUSTER_LOGGING_OPERATOR_UPSTREAM_URL}/commit/${CI_CLUSTER_LOGGING_OPERATOR_UPSTREAM_COMMIT} \
version=${CI_CONTAINER_VERSION}
## EXCLUDE BEGIN ##
LABEL name="openshift-logging/cluster-logging-rhel8-operator"
## EXCLUDE END ##