nlp/.gitlab-ci.yml

16 lines
267 B
YAML
Raw Normal View History

2019-03-13 17:13:29 +00:00
tags:
- docker
2019-03-11 22:27:47 +00:00
image: docker:latest
services:
- docker:dind
before_script:
2019-03-11 22:30:28 +00:00
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
2019-03-11 22:27:47 +00:00
build:
stage: build
script:
2019-03-11 22:50:32 +00:00
- docker build --pull -t $CI_REGISTRY_IMAGE .
2019-03-11 22:30:28 +00:00
- docker push $CI_REGISTRY_IMAGE