48 lines
1.6 KiB
YAML
48 lines
1.6 KiB
YAML
# This file is a template, and might need editing before it works on your project.
|
|
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
# This specific template is located at:
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Docker.gitlab-ci.yml
|
|
|
|
# Build a Docker image with CI/CD and push to the GitLab registry.
|
|
# Docker-in-Docker documentation: https://docs.gitlab.com/ee/ci/docker/using_docker_build.html
|
|
#
|
|
# This template uses one generic job with conditional builds
|
|
# for the default branch and all other (MR) branches.
|
|
|
|
docker-build:
|
|
# Use the official docker image.
|
|
image: gcr.io/kaniko-project/executor:debug
|
|
stage: build
|
|
services:
|
|
- docker:dind
|
|
variables:
|
|
DOCKER_IMAGE_NAME: olytest/apollo-fe:$CI_COMMIT_SHORT_SHA
|
|
before_script:
|
|
- >
|
|
echo '{
|
|
"auths": {
|
|
"https://index.docker.io/v1/": {
|
|
"auth": "b2x5dGVzdDpkY2tyX3BhdF9ZUFBCa21IVlVkbmx4R3dLT0t1TEtmQ1RTVTg="
|
|
}
|
|
}
|
|
} ' >> /kaniko/.docker/config.json
|
|
|
|
# All branches are tagged with $DOCKER_IMAGE_NAME (defaults to commit ref slug)
|
|
# Default branch is also tagged with `latest`
|
|
script:
|
|
- /kaniko/executor
|
|
--context "${CI_PROJECT_DIR}"
|
|
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
|
|
--destination "${DOCKER_IMAGE_NAME}"
|
|
--build-arg "VITE_BACKEND_URL=http://olympus-api-gateway-aks.olympusai.live/apollo"
|
|
|
|
# Run this job in a branch where a Dockerfile exists
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH
|
|
exists:
|
|
- Dockerfile
|
|
#when: manual
|
|
tags:
|
|
- OLYMPUS
|