-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile.ui-dashboards
53 lines (36 loc) · 1.5 KB
/
Dockerfile.ui-dashboards
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
FROM registry.redhat.io/ubi9/nodejs-18:latest AS web-builder
WORKDIR /opt/app-root
USER 0
ENV HUSKY=0
COPY ui-dashboards/web/package*.json web/
COPY ui-dashboards/Makefile Makefile
RUN make install-frontend-ci
COPY ui-dashboards/web/ web/
RUN make build-frontend
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.22 as go-builder
WORKDIR /opt/app-root
COPY ui-dashboards/Makefile Makefile
COPY ui-dashboards/go.mod go.mod
COPY ui-dashboards/go.sum go.sum
RUN make install-backend
COPY ui-dashboards/cmd/ cmd/
COPY ui-dashboards/pkg/ pkg/
ENV GOFLAGS='-mod=mod'
ENV GOEXPERIMENT=strictfipsruntime
ENV CGO_ENABLED=1
RUN make build-backend BUILD_OPTS="-tags strictfipsruntime"
FROM registry.redhat.io/rhel9-2-els/rhel:9.2
RUN mkdir /licenses
COPY ui-dashboards/LICENSE /licenses/.
USER 1001
COPY --from=web-builder /opt/app-root/web/dist /opt/app-root/web/dist
COPY --from=go-builder /opt/app-root/plugin-backend /opt/app-root
ENTRYPOINT ["/opt/app-root/plugin-backend", "-static-path", "/opt/app-root/web/dist"]
LABEL com.redhat.component="coo-dashboards-console-plugin" \
name="openshift/dashboards-console-plugin" \
version="v0.3.0" \
summary="OpenShift console plugin to enhance dashboards datasources" \
io.openshift.tags="openshift,observability-ui" \
io.k8s.display-name="OpenShift console dashboards plugin" \
maintainer="Observability UI Team <team-observability-ui@redhat.com>" \
description="OpenShift console plugin to enhance dashboards datasources"