summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: db1c1a73d7356e91f8aac04b2a898d712bc5d96d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
tag=act4e-image-mcdp

.PHONY: build shell check hotfix-test

build: Dockerfile act4e-mcdp-hotfix
	docker build -f Dockerfile -t $(tag) .

shell: build
	docker run -it --rm $(tag) /bin/bash

check: build
	docker run -it --rm $(tag) /bin/bash -c "act4e-mcdp-download-tests --out downloaded && act4e-mcdp-solve-dp-queries --solver act4e_mcdp_solution.DPSolver ./downloaded/lib1-parts"

hotfix-test: build
	docker run -it --rm $(tag) act4e-mcdp-download-tests