Skip to content

Building Kiwi

From Source

Clone the repository:

$ git clone https://github.com/fuseraft/kiwi.git

Run the build script:

$ ./build.sh

Create a symlink to run kiwi from anywhere:

$ mkdir -p ~/bin
$ ln -sf "$(pwd)/bin/kiwi" ~/bin/kiwi

Verify setup:

$ kiwi -v

Using Docker

Build the image:

$ docker build -t kiwi .

Run a script:

$ docker run --rm -v $(pwd):/scripts kiwi /scripts/hello.kiwi

Drop into the REPL:

$ docker run --rm -it kiwi