Commit 0da13035 authored by Peter Parente's avatar Peter Parente

Add a build-all target for testing

(c) Copyright IBM Corp. 2016
parent 90a3d2ef
# Copyright (c) Jupyter Development Team. # Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License. # Distributed under the terms of the Modified BSD License.
.PHONY: build dev help server .PHONY: build-all help environment-check release-all
OWNER:=jupyter OWNER:=jupyter
# need to list these manually because there's a dependency tree # need to list these manually because there's a dependency tree
...@@ -27,6 +27,8 @@ build/%: DARGS?= ...@@ -27,6 +27,8 @@ build/%: DARGS?=
build/%: build/%:
docker build $(DARGS) --rm --force-rm -t $(OWNER)/$(notdir $@):latest ./$(notdir $@) docker build $(DARGS) --rm --force-rm -t $(OWNER)/$(notdir $@):latest ./$(notdir $@)
build-all: $(patsubst %,build/%, $(ALL_STACKS))
dev/%: ARGS?= dev/%: ARGS?=
dev/%: DARGS?= dev/%: DARGS?=
dev/%: PORT?=8888 dev/%: PORT?=8888
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment