add woodpecker CI pipeline

This commit is contained in:
2026-04-15 22:53:42 -03:00
parent a64358f305
commit 5543d9b3b3

18
.woodpecker.yml Normal file
View File

@@ -0,0 +1,18 @@
when:
- event: [push, manual]
branch: main
steps:
- name: build-api
image: docker:24-dind
commands:
- docker build -t registry.mcrn.ar/unt/api:latest -f ctrl/Dockerfile.api .
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- name: build-ui
image: docker:24-dind
commands:
- docker build -t registry.mcrn.ar/unt/ui:latest -f ctrl/Dockerfile.ui .
volumes:
- /var/run/docker.sock:/var/run/docker.sock