Docker image to build and automatically add Archlinux packages to a local repository
Find a file
Knut Ahlers bf4ff170d7
Fix: Update must be executed after sync
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2020-05-02 15:04:27 +02:00
Dockerfile Pre-populate image with my repo-signing-key 2020-02-28 00:29:54 +01:00
getkeys.sh Allow to skip GPG verification for broken-ish packages 2020-02-05 14:25:37 +01:00
README.md Initial version 2018-11-10 14:34:45 +01:00
run.sh Fix: Update must be executed after sync 2020-05-02 15:04:27 +02:00

luzifer-docker / arch-repo-builder

This repo contains a docker image to build and automatically add Archlinux packages to a local repository (which then can be served through an HTTP server).

Usage

Local PKGBUILD

First possibility to use this image is to build a local PKGBUILD file:

docker run --rm -ti \
	-v "$(pwd):/src" \
	-v "/path/to/repo:/repo" \
	luzifer/arch-repo-builder

This will build an image from this Gist, take the local PKGBUILD in /src, build the package, move the result into /repo and add it to the *.db.tar.* file found in the repo. (Which means you need to initialize the repo first: repo-add /path/to/repo/reponame.db.tar.xz)

Remote git repository

The second possibility is to build any git repo containing a PKGBUILD file:

docker run --rm -ti \
	-v "/path/to/repo:/repo" \
	luzifer/arch-repo-builder \
	https://aur.archlinux.org/nerd-fonts-dejavu-complete.git

This will clone the given repository and then execute the same process as above.

Build without repo

If no db-file was found in /repo the package will not be added to the repo but only reside in the mounted /src.