mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-07 05:52:57 +00:00
21 lines
487 B
YAML
21 lines
487 B
YAML
image: registry.gitlab.com/openstapps/projectmanagement/builder
|
|
|
|
stages:
|
|
- setup
|
|
|
|
setup:
|
|
stage: setup
|
|
only:
|
|
- schedules
|
|
variables:
|
|
DOCKER_DRIVER: overlay2
|
|
image: registry.gitlab.com/openstapps/projectmanagement/builder
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.gitlab.com
|
|
- docker build -t registry.gitlab.com/openstapps/app .
|
|
- docker push registry.gitlab.com/openstapps/app
|
|
tags:
|
|
- docker
|