Auto-indexing service and GraphQL API for AT Protocol Records

ok lets build arm64

+3 -7
+1 -3
.github/workflows/docker-publish.yml
··· 61 61 labels: ${{ steps.meta.outputs.labels }} 62 62 cache-from: type=gha 63 63 cache-to: type=gha,mode=max 64 - platforms: linux/amd64 65 - # Note: ARM64 builds are very slow due to Rust NIF cross-compilation 66 - # Users on ARM Macs can use Rosetta 2 emulation with --platform linux/amd64 64 + platforms: linux/amd64,linux/arm64
+2 -3
Dockerfile
··· 60 60 # Expose the port the server will run on 61 61 EXPOSE $PORT 62 62 63 - # Run the server without requiring a TTY 64 - # The -noinput flag prevents Erlang from trying to start an interactive I/O system 65 - CMD ["/bin/sh", "-c", "exec erl -pa /app/*/ebin -eval 'server@@main:run(server)' -noshell -noinput"] 63 + # Run the server 64 + CMD ["./entrypoint.sh", "run"]
-1
example/docker-compose.yml
··· 3 3 services: 4 4 quickslice: 5 5 image: ghcr.io/bigmoves/quickslice:latest 6 - platform: linux/amd64 7 6 ports: 8 7 - "8000:8000" 9 8 volumes: