paicku
v0.0.7
Published
A CLI for containerizing applications with buildpacks
Downloads
10
Readme
paicku
A CLI for containerizing applications using buidpacks
Usage
$ npm install -g paicku
$ paicku build .In case you don't want to install paicku globally, use npx instead
$ npx paicku build .Available commands
Command Topics
paicku build- Build an imagepaicku builder- Interact with builderspaicku help- Display help for paicku.paicku inspect- Show information about a built app imagepaicku sbom- Interact with SBoM
Development
Install the required Node.js modules
npm iRun CLI in developemnt mode:
Use the following command to run the CLI in development mode:
./bin/dev.jsRun CLI in production mode:
To run the CLI in production mode, you need to build the application first. Run the build command:
npm run buildThen, execute the CLI:
./bin/run.jsNote: You must rebuild every time you make changes to the source code
Running tests
To run unit tests:
npm run test:unitTo run unit tests in debug mode (e.g., for using .only or extended execution time):
npm run test:unit:debugTo run integration tests:
npm run test:integrationTo run integration tests in debug mode:
npm run test:integration:debugFor more info, refer to the OCLI documentation
