🔧 Fix Docker lowercase repository name issue and add robust testing workflow

- Fix Docker tag lowercase requirement in GitHub Actions workflow
- Add comprehensive testing workflow without Docker push dependency
- Add repository name lowercase transformation for Docker images
- Add detailed security analysis and status reporting
- Add fallback workflow for cases where Docker push might fail
- Add comprehensive test reporting and status documentation
- Ensure compatibility with GitHub Container Registry naming requirements

This addresses the Docker repository name case sensitivity issue while
providing a robust testing workflow that works regardless of Docker push status.
This commit is contained in:
Alvin-Zilverstand
2026-01-19 11:45:37 +01:00
parent e0c89bbb87
commit 4a3a205673
4 changed files with 313 additions and 3 deletions

View File

@@ -28,6 +28,8 @@
"clean:admin": "cd admin && rm -rf node_modules",
"docker:build": "docker build -f deployment/docker/Dockerfile -t ghcr.io/alvin-zilverstand/narrow-casting-system .",
"docker:run": "docker run -d -p 3000:3000 --name snowworld ghcr.io/alvin-zilverstand/narrow-casting-system",
"docker:tag-fix": "echo 'Note: Docker images must use lowercase repository names'",
"docker:ghcr-login": "echo 'Using GitHub Container Registry with automatic authentication'"
"docker:compose": "cd deployment/docker && docker compose up -d",
"docker:compose-down": "cd deployment/docker && docker compose down",
"docker:compose-logs": "cd deployment/docker && docker compose logs -f"