Skip to content
Snippets Groups Projects
Commit b4952b0d authored by Damian Raczkowski's avatar Damian Raczkowski
Browse files

Add build image pipeline

parent c0b0ad6e
1 merge request!1Ci cd
Pipeline #13148 failed with stage
in 7 seconds
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
.gitlab-ci.yml 0 → 100644
image: docker:18.09.07
stages:
- build
build_image:
stage: build
services:
- docker:18.09.7-dind
script:
- docker build -t $CI_REGISTRY_IMAGE .
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker push $CI_REGISTRY_IMAGE
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment