We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e2a6e40 + abc6311 commit c4422d5Copy full SHA for c4422d5
.github/workflows/ci.yml
@@ -40,7 +40,13 @@ jobs:
40
uses: actions/checkout@v4
41
42
- name: Build Docker image
43
- run: docker compose build
+ 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
50
51
- name: Verify image was built
52
run: docker images | grep canton-mcp-server
0 commit comments