forked from OctoPrint/octoprint-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
52 lines (41 loc) · 1.54 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
builddir=.build
cachedir=.cache
octoprint_ref?= $(shell ./scripts/version.sh "OctoPrint/OctoPrint")
platforms?="linux/arm/v7,linux/arm64,linux/amd64"
.PHONY: test
build:
docker-compose -f test/docker-compose.yml build
down:
docker-compose -f test/docker-compose.yml down
up:
docker-compose -f test/docker-compose.yml up
clean:
docker-compose -f test/docker-compose.yml down --rmi local -v
rm -rf ${builddir}
setup-multi-arch:
docker run --privileged --rm tonistiigi/binfmt --install arm64,arm/v7,amd64
test:
./scripts/buildx_check.sh
@echo '[buildx]: building .Dockerfile for all supported architectures and caching locally'
mkdir -p ${cachedir} ${builddir}
docker buildx build \
--platform ${platforms} \
--cache-from type=registry,ref=docker.io/octoprint/octoprint:${octoprint_ref} \
--cache-from type=local,src=${cachedir} \
--cache-to type=local,dest=${cachedir} \
--build-arg octoprint_ref=${octoprint_ref} \
--output type=local,dest=${builddir} \
--progress tty -t octoprint/octoprint:test .
e2e:
@echo '[buildx]: building with test structures and running e2e tests'
docker build \
--secret id=password,src=./test/password.txt \
--file ./test/Dockerfile \
--progress tty -t octoprint/octoprint:e2e ./test
docker-compose -f test/e2e-compose.yml up
build-minimal:
docker build -t octoprint/octoprint:minimal -f minimal/Dockerfile --build-arg octoprint_ref=${octorprint_ref} ./minimal
test-minimal:
docker run -it --name octoprint_minimal -p 55000:5000 octoprint/octoprint:minimal
clean-minimal:
docker rm octoprint_minimal