Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit c8a00b7b authored by Dorian Turba's avatar Dorian Turba
Browse files

feat: add KANIKO_OPTIONS var

parent 3f9cc67f
No related branches found
No related tags found
1 merge request!1Revert "update: kaniko version 1.23.1"
...@@ -7,13 +7,17 @@ docker_build: ...@@ -7,13 +7,17 @@ docker_build:
IMAGE_NAME: $CI_PROJECT_NAME IMAGE_NAME: $CI_PROJECT_NAME
TARGET_IMAGE: $CI_REGISTRY_IMAGE:$TAG TARGET_IMAGE: $CI_REGISTRY_IMAGE:$TAG
PROJECT_PATH: . PROJECT_PATH: .
KANIKO_OPTIONS: ""
image: image:
name: gcr.io/kaniko-project/executor:v1.14.0-debug name: gcr.io/kaniko-project/executor:v1.14.0-debug
entrypoint: [ "" ] entrypoint: [ "" ]
tags: tags:
- docker - docker
script: script:
# Kaniko use $CI_REGISTRY_USER and $CI_REGISTRY_PASSWORD to connect to the
# registry
- /kaniko/executor - /kaniko/executor
--context "${PROJECT_PATH}" --context "${PROJECT_PATH}"
--dockerfile "${PROJECT_PATH}/Dockerfile" --dockerfile "${PROJECT_PATH}/Dockerfile"
--destination "${TARGET_IMAGE}" --destination "${TARGET_IMAGE}"
\ No newline at end of file ${KANIKO_OPTIONS}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment