Two-stage build (node:22-slim builder + nginxinc/nginx-unprivileged:alpine runtime) with SPA fallback routing, long-lived cache headers for fingerprinted assets, non-root user (UID 101), and no Node.js toolchain in runtime image (82 MB vs 329 MB+ single-stage). Verified by ui/tests/build/verify_production_image.sh covering build, health, SPA routing, non-root, stdout logging, cache-control headers, SIGTERM exit 0, Node.js absent, secret-free layers, and dep-layer cache hit. 102 integration tests still pass; shellcheck clean. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
516 B
Makefile
20 lines
516 B
Makefile
.PHONY: test-unit test-integration build-prod verify-prod build-ui-prod verify-ui-prod
|
|
|
|
test-unit:
|
|
cd api && python -m pytest tests/unit/ -v
|
|
|
|
test-integration:
|
|
docker compose -f docker-compose.test.yml run --rm api-test
|
|
|
|
build-prod:
|
|
docker build -f api/Dockerfile.prod api/ -t reactbin-api-prod:latest
|
|
|
|
verify-prod:
|
|
bash api/tests/build/verify_production_image.sh
|
|
|
|
build-ui-prod:
|
|
docker build -f ui/Dockerfile.prod ui/ -t reactbin-ui-prod:latest
|
|
|
|
verify-ui-prod:
|
|
bash ui/tests/build/verify_production_image.sh
|