spike: build + key-based cosign against Forgejo registry
Some checks failed
spike-build / build (push) Failing after 10s

This commit is contained in:
root 2026-07-01 09:16:27 +00:00
commit a818e8fd88
3 changed files with 55 additions and 0 deletions

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
# Throwaway spike app (ADR-0064): serves 200 on /health:3000 so the platform's
# built-app healthcheck passes. Copy into a Forgejo repo next to
# .forgejo/workflows/build.yml. Not platform code — spike scaffolding.
FROM nginx:alpine
RUN printf 'server {\n listen 3000;\n location = /health { return 200 "ok\n"; }\n}\n' \
> /etc/nginx/conf.d/default.conf
EXPOSE 3000