17 lines
334 B
YAML
17 lines
334 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
steps:
|
|
- name: dockerize
|
|
image: docker
|
|
commands:
|
|
- docker --version
|
|
- docker build ofb_angular
|
|
- docker images
|
|
|
|
- name: build_client
|
|
image: node
|
|
commands:
|
|
- cd Client
|
|
- npm install
|
|
- node node_modules/@angular/cli/bin/ng build --prod --configuration=production |