-
I want to add a package for wolfi-os, is there a step-by-step instruction on how to do this? |
Beta Was this translation helpful? Give feedback.
Answered by
kranurag7
Oct 12, 2024
Replies: 1 comment 2 replies
-
ref: https://edu.chainguard.dev/open-source/wolfi/building-a-wolfi-package/ and other examples in this repository. Usually the workflow abstraction is that you write your melange config in foo.yaml and considering if your package name is foo then you do the following from root of the repository: make dev-container
make package/foo # for building your apk
make test/foo # for testing Hope this helps. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
farcop
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ref: https://edu.chainguard.dev/open-source/wolfi/building-a-wolfi-package/ and other examples in this repository.
make targets is pretty useful when you're developing packages.
Usually the workflow abstraction is that you write your melange config in foo.yaml and considering if your package name is foo then you do the following from root of the repository:
Hope this helps.