spike/Dockerfile
root a818e8fd88
Some checks failed
spike-build / build (push) Failing after 10s
spike: build + key-based cosign against Forgejo registry
2026-07-01 09:16:27 +00:00

7 lines
374 B
Docker

# 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