mirror of
https://gitlab.archlinux.org/archlinux/archlinux-docker.git
synced 2026-01-11 20:31:05 +01:00
This commit adds: - Systemd sysusers hook is ran on the dockerfile - The dockerfile also populates the archlinux keyring - Remove the libalpm hooks as they are uneccessary now - Moved the package cleanup before the tar step on the makefile
44 lines
1.9 KiB
Makefile
44 lines
1.9 KiB
Makefile
DOCKER_USER:=pierres
|
|
DOCKER_ORGANIZATION=archlinux
|
|
DOCKER_IMAGE:=base
|
|
BUILDDIR=build
|
|
|
|
hooks:
|
|
mkdir -p alpm-hooks/usr/share/libalpm/hooks
|
|
find /usr/share/libalpm/hooks -exec ln -s /dev/null $(PWD)/alpm-hooks{} \;
|
|
|
|
rootfs: hooks
|
|
mkdir -vp $(BUILDDIR)/var/lib/pacman/
|
|
fakechroot -- fakeroot -- pacman -Sy -r $(BUILDDIR) \
|
|
--noconfirm --dbpath $(PWD)/$(BUILDDIR)/var/lib/pacman \
|
|
--config rootfs/etc/pacman.conf \
|
|
--noscriptlet \
|
|
--hookdir $(PWD)/alpm-hooks/usr/share/libalpm/hooks/ $(shell cat packages)
|
|
cp --recursive --preserve=timestamps --backup --suffix=.pacnew rootfs/* $(BUILDDIR)/
|
|
rm -r build/var/cache/pacman/pkg
|
|
tar --numeric-owner --xattrs --acls --exclude-from=exclude -C $(BUILDDIR) -c . -f archlinux.tar
|
|
rm -rf $(BUILDDIR) alpm-hooks
|
|
|
|
docker-image: rootfs
|
|
docker build -t $(DOCKER_ORGANIZATION)/$(DOCKER_IMAGE) .
|
|
|
|
docker-image-test: docker-image
|
|
# FIXME: /etc/mtab is hidden by docker so the stricter -Qkk fails
|
|
docker run --rm $(DOCKER_ORGANIZATION)/$(DOCKER_IMAGE) sh -c "/usr/bin/pacman -Sy && /usr/bin/pacman -Qqk"
|
|
docker run --rm $(DOCKER_ORGANIZATION)/$(DOCKER_IMAGE) sh -c "/usr/bin/pacman -Syu --noconfirm docker && docker -v"
|
|
# Ensure that the image does not include a private key
|
|
! docker run --rm $(DOCKER_ORGANIZATION)/$(DOCKER_IMAGE) pacman-key --lsign-key pierre@archlinux.de
|
|
docker run --rm $(DOCKER_ORGANIZATION)/$(DOCKER_IMAGE) sh -c "/usr/bin/id -u http"
|
|
docker run --rm $(DOCKER_ORGANIZATION)/$(DOCKER_IMAGE) sh -c "/usr/bin/pacman -Syu --noconfirm grep && locale | grep -q UTF-8"
|
|
|
|
ci-test:
|
|
docker run --rm --privileged --tmpfs=/tmp:exec --tmpfs=/run/shm -v /run/docker.sock:/run/docker.sock \
|
|
-v $(PWD):/app -w /app $(DOCKER_ORGANIZATION)/$(DOCKER_IMAGE) \
|
|
sh -c 'pacman -Syu --noconfirm make devtools docker && make docker-image-test'
|
|
|
|
docker-push:
|
|
docker login -u $(DOCKER_USER)
|
|
docker push $(DOCKER_ORGANIZATION)/$(DOCKER_IMAGE)
|
|
|
|
.PHONY: rootfs docker-image docker-image-test ci-test docker-push
|