archlinux/Makefile

22 lines
708 B
Makefile
Raw Normal View History

2017-04-10 15:19:21 +00:00
DOCKER_USER := 'pierres'
DOCKER_IMAGE := 'archlinux'
2017-04-08 16:10:19 +00:00
rootfs:
$(eval TMPDIR := $(shell mktemp -d))
2017-04-09 11:12:14 +00:00
pacstrap -C /usr/share/devtools/pacman-extra.conf -c -d -G -M $(TMPDIR) $(shell cat packages)
2017-04-10 15:19:21 +00:00
cp -rp --backup --suffix=.pacnew rootfs/* $(TMPDIR)/
2017-04-08 16:10:19 +00:00
arch-chroot $(TMPDIR) locale-gen
arch-chroot $(TMPDIR) pacman-key --init
arch-chroot $(TMPDIR) pacman-key --populate archlinux
2017-04-10 15:19:21 +00:00
tar --numeric-owner --xattrs --acls --exclude-from=exclude -C $(TMPDIR) -c . -f archlinux.tar
2017-04-08 16:10:19 +00:00
rm -rf $(TMPDIR)
docker-image: rootfs
2017-04-10 15:19:21 +00:00
docker build -t $(DOCKER_USER)/$(DOCKER_IMAGE) .
docker-push: docker-image
docker login -u $(DOCKER_USER)
docker push $(DOCKER_USER)/$(DOCKER_IMAGE)
2017-04-08 16:10:19 +00:00
2017-04-10 15:19:21 +00:00
.PHONY: rootfs docker-image docker-push