good morning!!!!

Skip to content
Snippets Groups Projects
Commit 83479d59 authored by a's avatar a
Browse files

Update .gitlab-ci.jsonnet

parent 3e0568d7
Branches
Tags
No related merge requests found
Pipeline #272 failed
Pipeline: bor

#273

    local dockerfile_name(image) = if image == "" then "Dockerfile" else "Dockerfile." + image;
    local dockerfile_name(image) = if (image == "") then ("Dockerfile") else ("Dockerfile." + image);
    local param_cmd(image) = {
    cmd: |||
    /kaniko/executor
    ......@@ -6,7 +6,7 @@ local param_cmd(image) = {
    --dockerfile "${CI_PROJECT_DIR}/%(df)s"
    --destination "${CI_REGISTRY_IMAGE}/%(img)s:${CI_COMMIT_SHORT_SHA}"
    --destination "${CI_REGISTRY_IMAGE}/%(img)s:latest"
    ||| % {img: image, df: dockerfile_name(df)},
    ||| % {img: image, df: dockerfile_name(image)},
    };
    local param_job(image, depends=[]) = {
    stage: 'build',
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment