umap/Makefile
Jannis Leidel 47bcacaa62
Added Docker setup.
This adds:

- a Dockerfile
- a Docker compose file for easy testing
- a Travis CI setup
  - so that it can build a Docker image and push to Docker Hub automatically
  - it does that on every Git tag as well and push a equally tagged version to Docker Hub
- extends the Makefile to add some helper tasks for docker (e.g. make docker-test)
2017-02-20 16:32:41 +01:00

16 lines
227 B
Makefile

test:
py.test
docker-build:
docker-compose build
docker-up:
docker-compose up
docker-stop:
docker-compose stop
docker-test:
docker-compose run app make test
.PHONY: test docker-build docker-up docker-stop docker-test