alpine-repo/README.md
2022-04-09 16:51:42 +02:00

15 lines
364 B
Markdown

# alpine-repo
## Building packages
The recommended way for building the packages is Docker.
Setup:
- ensure that you have the private key in `.abuild/`
- build the image using `docker build -t builder .`
- sync the current repo to a directory called `out`
```bash
docker run --rm -it -v "$(pwd):/aports" -v "$(pwd)/out:/home/ci/packages" -w "/pwd" builder
```