We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9462d59 commit c27ba92Copy full SHA for c27ba92
2 files changed
.github/workflows/build.yml
@@ -41,6 +41,8 @@ jobs:
41
path: "app/build/distributions/"
42
- name: "Untar files"
43
run: mkdir -p app/build/install && tar -xvf app/build/distributions/snowflake-mcp.tar -C $_
44
+ - name: "Set up QEMU"
45
+ uses: docker/setup-qemu-action@v3
46
- name: "Set up Docker Buildx"
47
uses: docker/setup-buildx-action@v3
48
- name: "Login to GHCR"
@@ -53,6 +55,7 @@ jobs:
53
55
uses: docker/build-push-action@v6
54
56
with:
57
context: .
58
+ platforms: linux/amd64,linux/arm64
59
push: true
60
tags: |
61
ghcr.io/heapy/snowflake-mcp:main
README.md
@@ -19,6 +19,7 @@ Requires Docker
19
Start the server:
20
21
```bash
22
+docker run \
23
--name snowflake-mcp \
24
-p 33300:8080 \
25
-v ~/.snowflake-mcp:/data \
0 commit comments