Bult docs home page
Search...
⌘K
Support
Start for free
Start for free
Search...
Navigation
Guides
Builds
Documentation
bult.ai
Get Started
Welcome
Quick Start
Guides
Foundations
Languages & Frameworks
Networking
Builds
Deployments
Database
Monitoring
Templates
Custom Domains
Regions
Compute Sizes
Usage
Tutorials
Technical Tutorials
Reference
Pricing
Support
Comparison
Migration
Community
On this page
Build Configuration
Dockerfiles
Nixpacks
Guides
Builds
Build Configuration
Configure builds in Canvas UI’s “Git” tab:
Nixpacks
: Set install (npm install), build (npm run build), and start (npm run start) commands.
Dockerfiles
: Specify path (e.g., ./Dockerfile), context (e.g., .), and build stage (e.g., production).
Dockerfiles
Example Dockerfile for Node.js:
Copy
FROM node:18
WORKDIR /app
COPY . .
RUN npm install
CMD ["npm", "run", "start"]
Set custom start command in Canvas UI (e.g., npm run start).
Nixpacks
Auto-detect build settings for Node.js, Python, etc.
Networking
Deployments
Assistant
Responses are generated using AI and may contain mistakes.