-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
81 lines (68 loc) · 2.36 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
export IMAGE_NAME?=rcarmo/debian-piku
export BASE_IMAGE_NAME=insightful/debian-s6
export VCS_REF=`git rev-parse --short HEAD`
export VCS_URL=https://github.com/piku/docker-debian
export BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"`
export TAG_DATE=`date -u +"%Y%m%d"`
export QEMU_VERSION=4.0.0-0
export TARGET_ARCHITECTURES=amd64 arm64v8 arm32v7
export QEMU_ARCHITECTURES=arm aarch64
export SHELL=/bin/bash
# Permanent local overrides
-include .env
.PHONY: build qemu wrap push manifest clean
qemu:
-docker run --rm --privileged multiarch/qemu-user-static:register --reset
-mkdir tmp
$(foreach ARCH, $(QEMU_ARCHITECTURES), make fetch-qemu-$(ARCH);)
fetch-qemu-%:
$(eval ARCH := $*)
cd tmp && \
curl -L -o qemu-$(ARCH)-static.tar.gz \
https://github.com/multiarch/qemu-user-static/releases/download/v$(QEMU_VERSION)/qemu-$(ARCH)-static.tar.gz && \
tar xzf qemu-$(ARCH)-static.tar.gz && \
cp qemu-$(ARCH)-static ../qemu/
build:
$(foreach ARCH, $(TARGET_ARCHITECTURES), make build-$(ARCH);)
translate-%: # translate our architecture mappings to s6's
@if [[ "$*" == "arm32v7" ]] ; then \
echo "armhf"; \
elif [[ "$*" == "arm64v8" ]] ; then \
echo "aarch64"; \
else \
echo $*; \
fi
build-%:
$(eval ARCH := $*)
docker build --build-arg BUILD_DATE=$(BUILD_DATE) \
--build-arg ARCH=$(shell make translate-$(ARCH);) \
--build-arg BASE=$(BASE_IMAGE_NAME):$(ARCH) \
--build-arg VCS_REF=$(VCS_REF) \
--build-arg VCS_URL=$(VCS_URL) \
-t $(IMAGE_NAME):$(ARCH) src
@echo "--- Done building $(ARCH) ---"
push:
docker push $(IMAGE_NAME)
push-%:
$(eval ARCH := $*)
docker push $(IMAGE_NAME):$(ARCH)
expand-%: # expand architecture variants for manifest
@if [ "$*" == "amd64" ] ; then \
echo '--arch $*'; \
elif [[ "$*" == *"arm"* ]] ; then \
echo '--arch arm --variant $*' | cut -c 1-21,27-; \
fi
manifest:
docker manifest create --amend \
$(IMAGE_NAME):latest \
$(foreach ARCH, $(TARGET_ARCHITECTURES), $(IMAGE_NAME):$(ARCH) )
$(foreach ARCH, $(TARGET_ARCHITECTURES), \
docker manifest annotate \
$(IMAGE_NAME):latest \
$(IMAGE_NAME):$(ARCH) $(shell make expand-$(ARCH));)
docker manifest push $(IMAGE_NAME):latest
clean:
-docker rm -fv $$(docker ps -a -q -f status=exited)
-docker rmi -f $$(docker images -q -f dangling=true)
-docker rmi -f $(BUILD_IMAGE_NAME)
-docker rmi -f $$(docker images --format '{{.Repository}}:{{.Tag}}' | grep $(IMAGE_NAME))