Skip to content
Snippets Groups Projects
.gitlab-ci.yml 258 B
Newer Older
N5608's avatar
N5608 committed
#This declares the pipeline stages  
N5608's avatar
N5608 committed
build_image:
N5608's avatar
N5608 committed
  script:
N5608's avatar
N5608 committed
    - docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN $CI_REGISTRY
    - docker build -t $CI_REGISTRY_IMAGE .
    - docker push $CI_REGISTRY_IMAGE
N5608's avatar
N5608 committed
  only:
N5608's avatar
N5608 committed
    - master
 
N5608's avatar
N5608 committed
  tags:
N5608's avatar
N5608 committed
    - general