You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.24@sha256:b91431604c435f3cabec20ddb653c0537c8ba8097ada57960d54a1266f95a7c3 AS builder
13
+
14
+
# create dir structure to generate the catalog
15
+
RUN mkdir -p /app/hack /app/.konflux/catalog
16
+
17
+
COPY .konflux/hack/ /app/hack/
18
+
COPY .konflux/catalog/ /app/.konflux/catalog/
19
+
COPY telco5g-konflux /app/telco5g-konflux
20
+
COPY konflux.Makefile /app/Makefile
21
+
22
+
23
+
# generate the catalog
24
+
25
+
# debug
26
+
RUN echo "root dir" && ls -lra $HOME
27
+
28
+
WORKDIR /app
29
+
RUN --mount=type=secret,id=telco-5g-redhat-pull-secret/.dockerconfigjson \
0 commit comments