25 lines
323 B
YAML
25 lines
323 B
YAML
build_zeo:
|
|
stage: build
|
|
tags:
|
|
- shell
|
|
- ubuntu
|
|
script:
|
|
- docker build -t zeo:5.2.0 src/zeo
|
|
|
|
build_flask:
|
|
stage: build
|
|
tags:
|
|
- shell
|
|
- ubuntu
|
|
script:
|
|
- docker build -t webui:1.0 src/webui
|
|
|
|
build_api:
|
|
stage: build
|
|
tags:
|
|
- shell
|
|
- ubuntu
|
|
script:
|
|
- echo "Build api image"
|
|
|