Files
ci_dckr/.gitlab-ci.yml
2021-02-10 22:19:39 +01:00

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"