Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Curious
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Global Dynamic Exposure
Betty
betty-integration
Curious
Merge requests
!1
add dockerized build in CI pipeline
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
add dockerized build in CI pipeline
ci
into
main
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Marius Kriegerowski
requested to merge
ci
into
main
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
2
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
1ff57dbc
1 commit,
3 years ago
2 files
+
19
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
.gitlab-ci.yml
0 → 100644
+
13
−
0
View file @ 1ff57dbc
Edit in single-file editor
Open in Web IDE
---
build::image
:
image
:
docker:19.03.12
stage
:
build
tags
:
-
dind
before_script
:
-
echo ${CI_REGISTRY}
-
docker login -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD} ${CI_REGISTRY}
script
:
-
docker build --pull -t ${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_SLUG} .
-
docker push ${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_SLUG}
Loading