Actualiser .gitea/workflows/deploy-verso.yml
Build and Deploy Verso / deploy (push) Failing after 1s

This commit is contained in:
2026-05-29 17:58:05 +00:00
parent 3fe806fc0e
commit 0771eeab43
+15 -7
View File
@@ -47,16 +47,24 @@ jobs:
mountPath: /workspace
containers:
- name: kaniko
image: gcr.io/kaniko-project/executor:debug
args:
- --context=dir:///workspace/repo/server-ce
- --dockerfile=/workspace/repo/server-ce/Dockerfile
- --destination=registry.alocoq.fr/verso:latest
- name: buildkit
image: moby/buildkit:latest
securityContext:
privileged: true
command:
- sh
- -c
- |
set -eux
buildctl-daemonless.sh build \
--frontend=dockerfile.v0 \
--local context=/workspace/repo \
--local dockerfile=/workspace/repo/server-ce \
--opt filename=Dockerfile \
--output type=image,name=registry.alocoq.fr/verso:latest,push=true
volumeMounts:
- name: workspace
mountPath: /workspace
volumes:
- name: workspace
emptyDir: {}