Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 587 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 587 Bytes

NIXPACKS

Demonstrate how to use NixPacks to build containers.

NOTES:

  • Nixpacks simplify using nix for installing software but they seem to create massive images.

Prereqs

# install nixpacks
brew install railwayapp/tap/nixpacks

# show options
nixpacks 

Build

# build ffmpeg
nixpacks build . --name nixpack_example --start-cmd "ffmpeg --version"
# run 
docker run -it nixpack_example

Resources

  • NixPacks Introduction here
  • railwayapp/nixpacks here