Add CI workflows for dual-image channel pattern
All checks were successful
Build Non-Prod Image / build-and-release (push) Successful in 29s
Build Prod Image / build-and-release (push) Successful in 32s

- Non-prod workflow: builds on push to main, pushes to acme-nonprod registry, creates Octopus release in Non-Prod channel
- Prod workflow: builds on v* tags, pushes to acme-prod registry, creates Octopus release in Prod channel
- Simple Alpine Dockerfile for demo purposes
This commit is contained in:
octopus.oreillyit.nz
2026-03-23 16:47:00 +13:00
parent f9b62d05b8
commit 3e09802db8
4 changed files with 142 additions and 2 deletions

3
Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM alpine:3.21
LABEL org.opencontainers.image.source="https://gitea.oreillyit.nz/octopus.oreillyit.nz/demo-app"
CMD ["echo", "Hello from demo-app"]