blob: 201939a26562b22a73a7288172dd2a80649a0997 (
plain)
1
2
3
4
5
6
7
8
9
10
|
IMAGE_NAME = kraxel/s2i-jekyll
.PHONY: build
build:
docker build -t $(IMAGE_NAME) .
.PHONY: test
test:
docker build -t $(IMAGE_NAME)-candidate .
IMAGE_NAME=$(IMAGE_NAME)-candidate test/run
|