- Add git-clone task for repository cloning - Add kaniko-build task for container image builds - Add container-build pipeline orchestrating clone + build - Add harbor-credentials ExternalSecret for innoventions namespace - Add test-app.Dockerfile for pipeline validation Day 3 deliverables for Tekton Phase 2
7 lines
340 B
Docker
7 lines
340 B
Docker
FROM alpine:3.21
|
|
RUN apk add --no-cache curl
|
|
LABEL org.opencontainers.image.source="https://gitea.mk-labs.cloud/rblundon/homelab"
|
|
LABEL org.opencontainers.image.description="Test application for Tekton pipeline validation"
|
|
LABEL org.opencontainers.image.title="tekton-test-app"
|
|
CMD ["echo", "Hello from Tekton Pipeline! Build successful."]
|