diff options
Diffstat (limited to 'django/Makefile')
-rw-r--r-- | django/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/django/Makefile b/django/Makefile new file mode 100644 index 0000000..78b94ac --- /dev/null +++ b/django/Makefile @@ -0,0 +1,16 @@ +all: build +#install: push + +.PHONY: rebuild build push start stop restart bash + +build: Dockerfile + docker build --tag chsa/biomedisa-django:latest . + +rebuild: Dockerfile + docker build --no-cache --tag chsa/biomedisa-django:latest . + +#push: build +# docker push chsa/biomedisa:latest + +bash: build + docker run -it chsa/biomedisa-django /bin/bash |