Auto-indexing service and GraphQL API for AT Protocol Records quickslice.slices.network/
atproto gleam graphql

fix(ci): use system bun for ARM64 docker builds

lustre_dev_tools hash verification fails on ARM64 when downloading bun.
Install bun via npm and configure lustre to use the system binary.

Changed files
+5 -1
client
+2 -1
Dockerfile
··· 11 11 npm \ 12 12 build-base \ 13 13 sqlite-dev \ 14 - postgresql-dev 14 + postgresql-dev \ 15 + && npm install -g bun 15 16 16 17 # Configure git for non-interactive use 17 18 ENV GIT_TERMINAL_PROMPT=0
+3
client/gleam.toml
··· 2 2 version = "1.0.0" 3 3 target = "javascript" 4 4 5 + [tools.lustre.bin] 6 + bun = "system" 7 + 5 8 [tools.lustre.build] 6 9 minify = true 7 10 # Build the application into our server's `priv/static` directory so it can be