commit 8e41725602b153334b465fee0c34b2057acca9c5 Author: Aaron Fischer Date: Mon Dec 4 08:22:38 2023 +0100 Add a little helper script to setup the env diff --git a/README.md b/README.md new file mode 100644 index 0000000..eac4c96 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# AlpineLinux abuild Workshop + +* [Wiki page for creating AlpineLinux packages](https://wiki.alpinelinux.org/wiki/Creating_an_Alpine_package) diff --git a/abuild.sh b/abuild.sh new file mode 100755 index 0000000..f675705 --- /dev/null +++ b/abuild.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +sudo docker run -i \ + -v ./keys:/etc/apk/keys \ + -v ./cache:/var/cache/distfiles \ + -v ./home:/home/buildozer \ + -t alpinelinux/build-base:latest \ + /bin/ash