
Go
Go binaries, deployed simply. Push your source code and we handle the compilation and execution without Dockerfiles.
Go developers value simplicity, but container deployment often adds unnecessary complexity. Gigalixir respects the Go toolchain: you push code, we run go build, and deploy the resulting binary to a lightweight, high-performance runtime.
- Auto-Compilation: The buildpack detects
go.mod, downloads dependencies, and compiles your binary on our servers. You don't need to cross-compile locally or manage build artifacts. - No Docker Required: Eliminate the overhead of writing multi-stage Dockerfiles. We handle the containerization and OS-level security patching for you.
- High Concurrency: We do not impose artificial thread limits. Your Goroutines can schedule efficiently across available resources, making it ideal for high-throughput services.
- Zero-Downtime Updates: We spin up the new binary version and wait for health checks to pass before switching traffic, ensuring no dropped connections during deployments.
