use kaniko to build container
This commit is contained in:
parent
58abf18645
commit
56dd40596f
@ -1,9 +0,0 @@
|
|||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
end_of_line = lf
|
|
||||||
charset = utf-8
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
insert_final_newline = true
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
@ -1,13 +1,21 @@
|
|||||||
|
stages:
|
||||||
|
- build
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
IMAGE_NAME: thallian/roundcube
|
CI_REGISTRY_IMAGE: thallian/roundcube
|
||||||
|
|
||||||
build:
|
build:
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
image:
|
||||||
- docker login -u $DOCKER_USER -p $DOCKER_PASSWORD $DOCKER_REGISTRY
|
name: gcr.io/kaniko-project/executor:debug
|
||||||
- docker build -t $IMAGE_NAME:$CI_COMMIT_SHA .
|
entrypoint: [""]
|
||||||
- docker build -t $IMAGE_NAME:$CI_COMMIT_REF_NAME .
|
script:
|
||||||
- docker build -t $IMAGE_NAME:latest .
|
- mkdir -p /kaniko/.docker
|
||||||
- docker push $IMAGE_NAME:$CI_COMMIT_SHA
|
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(printf "%s:%s" "$CI_REGISTRY_USER" "$CI_REGISTRY_PASSWORD" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
|
||||||
- docker push $IMAGE_NAME:$CI_COMMIT_REF_NAME
|
- >-
|
||||||
- docker push $IMAGE_NAME:latest
|
/kaniko/executor
|
||||||
|
--context "$CI_PROJECT_DIR"
|
||||||
|
--dockerfile "$CI_PROJECT_DIR/Dockerfile"
|
||||||
|
--destination "$CI_REGISTRY_IMAGE:$CI_COMMIT_SHA"
|
||||||
|
--destination "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME"
|
||||||
|
--destination "$CI_REGISTRY_IMAGE:latest"
|
||||||
|
0
rootfs/etc/cont-init.d/00-roundcube → rootfs/bin/dbinit
Normal file → Executable file
0
rootfs/etc/cont-init.d/00-roundcube → rootfs/bin/dbinit
Normal file → Executable file
1
rootfs/etc/s6-overlay/s6-rc.d/dbinit/run
Normal file
1
rootfs/etc/s6-overlay/s6-rc.d/dbinit/run
Normal file
@ -0,0 +1 @@
|
|||||||
|
dbinit
|
1
rootfs/etc/s6-overlay/s6-rc.d/dbinit/type
Normal file
1
rootfs/etc/s6-overlay/s6-rc.d/dbinit/type
Normal file
@ -0,0 +1 @@
|
|||||||
|
oneshot
|
2
rootfs/etc/s6-overlay/s6-rc.d/nginx/dependencies
Normal file
2
rootfs/etc/s6-overlay/s6-rc.d/nginx/dependencies
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
confd
|
||||||
|
dbinit
|
3
rootfs/etc/s6-overlay/s6-rc.d/nginx/run
Normal file
3
rootfs/etc/s6-overlay/s6-rc.d/nginx/run
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/with-contenv sh
|
||||||
|
|
||||||
|
exec nginx -g "daemon off;"
|
1
rootfs/etc/s6-overlay/s6-rc.d/nginx/type
Normal file
1
rootfs/etc/s6-overlay/s6-rc.d/nginx/type
Normal file
@ -0,0 +1 @@
|
|||||||
|
longrun
|
Loading…
Reference in New Issue
Block a user