Skip to content
Snippets Groups Projects
.gitlab-ci.yml 1.79 KiB
Newer Older

build_buster-slim-pg11:
  image:
    name: gcr.io/kaniko-project/executor:debug
    entrypoint: [""]
  script:
    - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
    - /kaniko/executor
      --context $CI_PROJECT_DIR/library/buster-slim-pg11
      --dockerfile $CI_PROJECT_DIR/library/buster-slim-pg11/Dockerfile
      --destination $CI_REGISTRY_IMAGE/buster-slim-pg11
build_kubectl-kustomize:
  image:
    name: gcr.io/kaniko-project/executor:debug
    entrypoint: [""]
  script:
    - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
    - /kaniko/executor
      --context $CI_PROJECT_DIR/library/kubectl-kustomize
      --dockerfile $CI_PROJECT_DIR/library/kubectl-kustomize/Dockerfile
      --destination $CI_REGISTRY_IMAGE/kubectl-kustomize

build_kubectl:
  image:
    name: gcr.io/kaniko-project/executor:debug
    entrypoint: [""]
  script:
    - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
    - /kaniko/executor
      --context $CI_PROJECT_DIR/library/kubectl
      --dockerfile $CI_PROJECT_DIR/library/kubectl/Dockerfile
      --destination $CI_REGISTRY_IMAGE/kubectl

build_python-logilab:
  image:
    name: gcr.io/kaniko-project/executor:debug
    entrypoint: [""]
  script:
    - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
    - /kaniko/executor
      --context $CI_PROJECT_DIR/library/python-logilab
      --dockerfile $CI_PROJECT_DIR/library/python-logilab/Dockerfile
      --destination $CI_REGISTRY_IMAGE/python-logilab