File tree Expand file tree Collapse file tree 1 file changed +5
-14
lines changed
Expand file tree Collapse file tree 1 file changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -5,20 +5,11 @@ FROM $BUILDER AS builder-ui
55
66WORKDIR /go/src/github.com/openshift-pipelines/console-plugin
77COPY . .
8- RUN set -e; for f in patches/*.patch; do echo ${f}; [[ -f ${f} ]] || continue; git apply ${f}; done
9- RUN npm install -g corepack && \
10- if [ -f /cachi2/cachi2.env ]; then \
11- source /cachi2/cachi2.env && \
12- corepack enable && \
13- corepack prepare
[email protected] --activate && \
14- yarn install && \
15- yarn build; \
16- else \
17- corepack enable && \
18- corepack prepare
[email protected] --activate && \
19- yarn install --immutable && \
20- yarn build; \
21- fi
8+
9+ # Install dependencies & build
10+ RUN yarn install --immutable && \
11+ yarn build
12+
2213
2314FROM $RUNTIME
2415ARG VERSION=console-plugin-main
You can’t perform that action at this time.
0 commit comments