Skip to content

Commit c4422d5

Browse files
authored
Merge pull request #37 from ChainSafe/facilitator-integration
fix: Disable BuildKit in CI to avoid Docker snapshot corruption
2 parents e2a6e40 + abc6311 commit c4422d5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,13 @@ jobs:
4040
uses: actions/checkout@v4
4141

4242
- name: Build Docker image
43-
run: docker compose build
43+
env:
44+
DOCKER_BUILDKIT: 0 # Disable BuildKit to avoid snapshot corruption issues
45+
run: |
46+
# Clear any existing cache
47+
docker builder prune -f || true
48+
# Build using legacy builder (more stable)
49+
docker compose build
4450
4551
- name: Verify image was built
4652
run: docker images | grep canton-mcp-server

0 commit comments

Comments
 (0)