From 9f52db9e73f3444620f091f86dd03f9fa99ea5a9 Mon Sep 17 00:00:00 2001 From: Igor Date: Wed, 27 Sep 2023 11:14:34 +0300 Subject: [PATCH] update dockerfile --- devfile.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/devfile.yaml b/devfile.yaml index 79a7b2509a..ca60c0bb37 100644 --- a/devfile.yaml +++ b/devfile.yaml @@ -13,9 +13,9 @@ components: - name: m2 volume: {} commands: - - id: build + - id: buildsources exec: - label: "1. Build" + label: "1. Build sources" component: tools workingDir: ${PROJECT_SOURCE} commandLine: | @@ -23,3 +23,13 @@ commands: group: kind: build isDefault: true + - id: buildimage + exec: + label: "2. Build image" + component: tools + workingDir: ${PROJECT_SOURCE} + commandLine: | + ./build/build.sh + group: + kind: build + isDefault: true