mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/ocr.git
synced 2024-12-26 18:54:17 +00:00
13 lines
249 B
YAML
13 lines
249 B
YAML
|
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
|