Commit 504868d
committed
fix(ci): Force Docker rebuild to bypass cache for environment variable changes
Resolves persistent CI failures in workflow run 17084167265 by forcing
Docker images to rebuild without cache.
Problem:
- Previous fix for ZPMOD_STAGE_MODULE_DIR in docker-compose.yml was correct
- However, GitHub Actions was reusing cached Docker images built before the fix
- Cached images don't pick up docker-compose.yml environment changes
- Tests continued failing with 'zpmod module not found' errors
Solution:
- Add --no-cache flag to 'docker compose build' commands in CI workflow
- Forces fresh Docker image builds that will use updated docker-compose.yml
- Ensures environment variables are properly set in containers
This resolves the Docker caching issue without changing the underlying fix.1 parent f2f4f34 commit 504868d
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
| 71 | + | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
| |||
0 commit comments