We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b475ac commit 25df27bCopy full SHA for 25df27b
framework/components/blockchain/solana.go
@@ -5,6 +5,7 @@ import (
5
"fmt"
6
"os"
7
"path/filepath"
8
+ "runtime"
9
"strconv"
10
"strings"
11
"time"
@@ -31,9 +32,13 @@ var idJSONRaw = `
31
32
`
33
34
func defaultSolana(in *Input) {
- // Use image locally and in CI for arm64
35
if in.Image == "" {
36
- in.Image = "f4hrenh9it/solana"
+ // Official arm64 image does not exist for Solana so use custom built one
37
+ if runtime.GOARCH == "arm64" {
38
+ in.Image = "f4hrenh9it/solana"
39
+ } else {
40
+ in.Image = "anzaxyz/agave:v2.1.13"
41
+ }
42
}
43
if in.Port == "" {
44
in.Port = "8999"
0 commit comments