update dockerfile
parent
2fff68b014
commit
9f52db9e73
14
devfile.yaml
14
devfile.yaml
|
|
@ -13,9 +13,9 @@ components:
|
||||||
- name: m2
|
- name: m2
|
||||||
volume: {}
|
volume: {}
|
||||||
commands:
|
commands:
|
||||||
- id: build
|
- id: buildsources
|
||||||
exec:
|
exec:
|
||||||
label: "1. Build"
|
label: "1. Build sources"
|
||||||
component: tools
|
component: tools
|
||||||
workingDir: ${PROJECT_SOURCE}
|
workingDir: ${PROJECT_SOURCE}
|
||||||
commandLine: |
|
commandLine: |
|
||||||
|
|
@ -23,3 +23,13 @@ commands:
|
||||||
group:
|
group:
|
||||||
kind: build
|
kind: build
|
||||||
isDefault: true
|
isDefault: true
|
||||||
|
- id: buildimage
|
||||||
|
exec:
|
||||||
|
label: "2. Build image"
|
||||||
|
component: tools
|
||||||
|
workingDir: ${PROJECT_SOURCE}
|
||||||
|
commandLine: |
|
||||||
|
./build/build.sh
|
||||||
|
group:
|
||||||
|
kind: build
|
||||||
|
isDefault: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue