Browse Source

Merge branch 'dev' into 69-dockerignore

Conflicts:
	Makefile
feature/load_slices
Jim Rybarski 9 years ago
parent
commit
d5dc3e3472
1 changed files with 14 additions and 1 deletions
  1. +14
    -1
      Makefile

+ 14
- 1
Makefile View File

@ -1,8 +1,21 @@
.PHONY: build py2shell py3shell test
.PHONY: info build shell py2 py3 test
info:
@echo ""
@echo "Available Make Commands"
@echo ""
@echo "build: builds the image"
@echo "py2: mounts ~/Documents/nd2s to /var/nd2s and runs a Python 2.7 interpreter"
@echo "py3: mounts ~/Documents/nd2s to /var/nd2s and runs a Python 3.4 interpreter"
@echo "test: runs all unit tests (in Python 3.4)"
@echo ""
build:
docker build -t jimrybarski/nd2reader .
shell:
docker run --rm -v ~/Documents/nd2s:/var/nd2s -it jimrybarski/nd2reader bash
py2:
docker run --rm -v ~/Documents/nd2s:/var/nd2s -it jimrybarski/nd2reader python2.7


Loading…
Cancel
Save