File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 11SBCL_CMD := sbcl --noinform --disable-debugger --load
22OBJECTS := lisp-inference
33DOCKER_IMG = lisp-inference
4- PUBLIC_IMG = ryukinix/$(DOCKER_IMG )
4+ VERSION := latest
5+ PUBLIC_IMG = ryukinix/$(DOCKER_IMG ) :$(VERSION )
56
67all : $(OBJECTS )
78
@@ -20,14 +21,14 @@ server:
2021docker-build :
2122 docker build -t $(DOCKER_IMG ) .
2223
23- docker-run :
24+ docker-run : docker-build
2425 docker run --rm -it --network=host $(DOCKER_IMG )
2526
26- docker-check :
27+ docker-check : docker-build
2728 docker run --rm -t --entrypoint=ros $(DOCKER_IMG ) run -s lisp-inference/test -l run-test.lisp
2829
29- docker-publish :
30+ docker-publish : docker-build
3031 docker tag $(DOCKER_IMG ) $(PUBLIC_IMG )
3132 docker push $(PUBLIC_IMG )
3233
33- .PHONY : check
34+ .PHONY : check docker-build
You can’t perform that action at this time.
0 commit comments