Debug woodpecker

This commit is contained in:
myrmidex 2025-07-13 21:08:51 +02:00
parent 30d1deb18b
commit da3872db6e

View file

@ -2,15 +2,17 @@ when:
event: tag event: tag
steps: steps:
build-image: build:
image: docker image: docker
environment:
- DOCKER_BUILDKIT=1
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
commands: commands:
- echo "⚙️ Building Docker image for ${CI_COMMIT_TAG}" - echo "⚙️ Building Docker image for ${CI_COMMIT_TAG}"
- docker build -t codeberg.org/${CI_REPO}:${CI_COMMIT_TAG} . - docker build -f docker/Dockerfile -t codeberg.org/${CI_REPO}:${CI_COMMIT_TAG} .
push-image: push:
image: docker image: docker
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock