nxtgauge-frontend-solid/.woodpecker.yml
Tracewebstudio Dev 80fb6aa9b4 fix(build): use multi-stage Dockerfile and add .dockerignore
- Change .woodpecker.yml to use Dockerfile (multi-stage) instead of Dockerfile.simple
- Add .dockerignore to exclude node_modules and build artifacts
- Reduces image size to avoid 413 Payload Too Large error
2026-04-16 10:47:30 +02:00

24 lines
572 B
YAML

when:
branch: [main, high-performance]
event: push
steps:
- name: build-and-push
image: woodpeckerci/plugin-kaniko:2.1.1
settings:
registry: registry.nxtgauge.com
repo: nxtgauge-frontend-solid
dockerfile: Dockerfile
tags:
- ${CI_COMMIT_SHA}
- latest
- high-performance-latest
username:
from_secret: REGISTRY_USERNAME
password:
from_secret: REGISTRY_PASSWORD
insecure: true
insecure_pull: true
skip_tls_verify: true
platforms: linux/amd64
cache: false