blob: ca2acc367c708ad87d968c80b7a4ac6998d02820 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
## aports
packages managing the baseline for my alpine systems
### requirements
only docker is needed, since the build environment is run inside docker
### building
to compile the APKs, set the variables in the Makefile and run `make aports`
### usage
to add this baseline to an alpine system run the following on a new install
```sh
sed -i 's/#//' /etc/apk/repositories
apk add --no-cache --allow-untrusted --repository http://f.freya.cat/aports freya-base
echo freya-base > /etc/apk/world
apk update && apk upgrade
```
|