Update 2 files
- /Dockerfile - /.gitlab-ci.yml
This commit is contained in:
27
.gitlab-ci.yml
Normal file
27
.gitlab-ci.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
docker-build:
|
||||
image: gcr.io/kaniko-project/executor:debug
|
||||
stage: build
|
||||
variables:
|
||||
DOCKER_IMAGE_NAME: olytest/aradne-fe:$CI_COMMIT_SHORT_SHA
|
||||
before_script:
|
||||
- >
|
||||
echo '{
|
||||
"auths": {
|
||||
"https://index.docker.io/v1/": {
|
||||
"auth": "b2x5dGVzdDpkY2tyX3BhdF9ZUFBCa21IVlVkbmx4R3dLT0t1TEtmQ1RTVTg="
|
||||
}
|
||||
}
|
||||
} ' >> /kaniko/.docker/config.json
|
||||
script:
|
||||
- /kaniko/executor
|
||||
--context "${CI_PROJECT_DIR}"
|
||||
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
|
||||
--destination "${DOCKER_IMAGE_NAME}"
|
||||
--build-arg "VITE_BACKEND_URL=https://hermione-nu6mvqujsq-ey.a.run.app"
|
||||
# Run this job in a branch where a Dockerfile exists
|
||||
rules:
|
||||
- if: $CI_COMMIT_BRANCH
|
||||
exists:
|
||||
- Dockerfile
|
||||
tags:
|
||||
- OLYMPUS
|
||||
Reference in New Issue
Block a user