App source + Nix packages + Docker = Image
Nixpacks takes a source directory and produces an OCI compliant image that can be deployed anywhere. The project was started by the Railway team as an alternative to Buildpacks and attempts to address a lot of the shortcomings and issues that occurred when deploying thousands of user apps to the Railway platform. The biggest change is that system and language dependencies are pulled from the Nix ecosystem, which provides a bunch of benefits.
You can follow along with the roadmap in the GitHub project.
- ✨ Intutive defaults: In most cases, building and deploying and app with nixpacks should just work with no configuration needed.
- ⚙️ Customization where necessary: Every part of the pipeline should be customizable. These include the Nix packages to add to the environment and build/start commands.
- 🚀 Easily extendible: New providers (languages) should be able to be easily added to nixpacks with minimal knowledge of Nix and Docker.
Nix packages are used for OS and language level dependencies (e.g. nodejs and ffmpeg). These packages are built and loaded into the environment where we then use these dependencies to install, build, and run the app (e.g. npm install
, cargo build
, etc.).
At the moment nixpacks generates a Dockerfile
based on all information available. To create an image this is then built with docker build
. However, this may change so providers should not need to know about the underlying Docker implementation.
This project is not yet distributed anywhere and must be built with Rust.
- Checkout this repo
git clone https://github.com/railwayapp/nixpacks.git
- Build the source
cargo build
- Run the tests
cargo test
There are two main commands
Generates a build plan and outputs to stdout.
cargo run -- plan $APP_SRC
View the help with cargo run -- plan --help
Creates a runnable image with Docker
cargo run -- build $APP_SRC --name $NAME
View the help with cargo run -- build --help
Nixpacks works in two phases
Plan
Analyze the app source directory and generates a reproducible build plan. This plan can be saved (in JSON format) an re-used at a later date to build the image in the exact same way every time.
Language providers are matched against the app source directory and suggest Nix packages, an install command, build command, and start command. All of these can be overwritten by the user.
Build
The build phase takes the build plan and creates an OCI compliant image (with Docker) that can be deployed and run anywhere. This happens in the following steps
- Create build plan
- Copy app source to temp directory
- Use the Nix packages in the build plan and generate an
environment.nix
file - Use the install, build, and start commands and generate a
Dockerfile
- Done!
Overall the process is fairy simple.
At the moment nixpacks supports the following languages out of the box
Contributions are welcome with the big caveat that this is a very early stage project and the implementation details and API will most likely change between now and a stable release. For more details on how to contribute, please see the Contributing guidelines.