ocr/.gitlab-ci.yml

13 lines
249 B
YAML
Raw Normal View History

2019-03-11 22:54:13 +00:00
image: docker:latest
services:
- docker:dind
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
build:
stage: build
script:
- docker build --pull -t $CI_REGISTRY_IMAGE .
- docker push $CI_REGISTRY_IMAGE