First try
This commit is contained in:
commit
c8beea5bbf
17 changed files with 161 additions and 0 deletions
20
.gitlab-ci.yml
Normal file
20
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
build-site:
|
||||
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
|
||||
script:
|
||||
- hugo
|
||||
|
||||
build-image:
|
||||
image:
|
||||
name: gcr.io/kaniko-project/executor:debug
|
||||
entrypoint: [""]
|
||||
script:
|
||||
- mkdir -p /kaniko/.docker
|
||||
- echo "{\"auths\":{\"${CI_REGISTRY}\":{\"auth\":\"$(printf "%s:%s" "${CI_REGISTRY_USER}" "${CI_REGISTRY_PASSWORD}" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
|
||||
- >-
|
||||
/kaniko/executor
|
||||
--context "${CI_PROJECT_DIR}"
|
||||
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
|
||||
--destination "${CI_REGISTRY_IMAGE}/hackertours:latest"
|
||||
--destination "${CI_REGISTRY_IMAGE}/hackertours:stable"
|
||||
--destination "${CI_REGISTRY_IMAGE}/hackertours:23.10"
|
||||
--destination "${CI_REGISTRY_IMAGE}/hackertours:23.10.0"
|
Loading…
Add table
Add a link
Reference in a new issue