Files
web/.drone.yaml
Kieran 74acc4ee42
All checks were successful
continuous-integration/drone/push Build is passing
fix: fotter notes
2025-03-28 14:48:15 +00:00

21 lines
427 B
YAML

---
kind: pipeline
type: kubernetes
name: default
metadata:
namespace: git
steps:
- name: build
image: docker
privileged: true
environment:
TOKEN:
from_secret: registry_token
commands:
- dockerd &
- docker login -u registry -p $TOKEN registry.v0l.io
- docker build -t registry.v0l.io/lnvps-web:latest --build-arg MODE=lnvps --push .
- kill $(cat /var/run/docker.pid)