k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
619 B
16 lines
619 B
---
|
|
pipeline image:
|
|
stage: build
|
|
image: docker:20.10.22-cli
|
|
variables:
|
|
DOCKER_TLS_CERTDIR: ""
|
|
services:
|
|
- name: docker:20.10.22-dind
|
|
# See https://gitlab.com/gitlab-org/gitlab-runner/-/issues/27300 for why this is required
|
|
command: ["--tls=false"]
|
|
before_script:
|
|
- echo $CI_REGISTRY_PASSWORD | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
|
|
script:
|
|
# DOCKER_HOST is overwritten if we set it as a GitLab variable
|
|
- DOCKER_HOST=tcp://docker:2375; docker build --network host --file pipeline.Dockerfile --tag $PIPELINE_IMAGE .
|
|
- docker push $PIPELINE_IMAGE
|