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.
17 lines
341 B
17 lines
341 B
image: docker:19.03.1 |
|
|
|
variables: |
|
DOCKER_TLS_CERTDIR: "/certs" |
|
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG |
|
|
|
services: |
|
- docker:19.03.1-dind |
|
|
|
before_script: |
|
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY |
|
|
|
build: |
|
stage: build |
|
script: |
|
- docker build -t $IMAGE_TAG . |
|
- docker push $IMAGE_TAG
|
|
|