Skip to content

Commit 180033e

Browse files
committed
Add an easy way to build all aarch64 notebooks
1 parent a56eb7c commit 180033e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ ALL_IMAGES:= \
1818
pyspark-notebook \
1919
all-spark-notebook
2020

21+
AARCH64_IMAGES:= \
22+
base-notebook \
23+
minimal-notebook \
24+
r-notebook \
25+
scipy-notebook \
26+
datascience-notebook \
27+
pyspark-notebook \
28+
all-spark-notebook
29+
2130
# Enable BuildKit for Docker build
2231
export DOCKER_BUILDKIT:=1
2332

@@ -39,6 +48,7 @@ build/%: ## build the latest image for a stack using the system's architecture
3948
@echo -n "Built image size: "
4049
@docker images $(OWNER)/$(notdir $@):latest --format "{{.Size}}"
4150
build-all: $(foreach I, $(ALL_IMAGES), build/$(I)) ## build all stacks
51+
build-aarch64: $(foreach I, $(AARCH64_IMAGES), build/$(I)) ## build aarch64 stacks
4252

4353

4454
check-outdated/%: ## check the outdated mamba/conda packages in a stack and produce a report (experimental)

0 commit comments

Comments
 (0)