1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-20 22:01:41 +00:00
senpy/Makefile

29 lines
671 B
Makefile
Raw Normal View History

PYVERSION=2.7
NAME=senpycommunity
REPO=gsiupm
PLUGINS= $(filter %/, $(wildcard */))
2018-06-15 07:46:15 +00:00
IMAGENAME=gsiupm/senpy-plugins-community
2018-06-20 10:33:34 +00:00
DOCKER_FLAGS=
2018-07-04 14:42:38 +00:00
DEV_PORT?=5000
2018-06-14 17:38:08 +00:00
ifdef SENPY_FOLDER
2018-06-15 07:46:15 +00:00
DOCKER_FLAGS+= -v $(realpath $(SENPY_FOLDER)):/usr/src/app/
2018-06-14 17:38:08 +00:00
endif
all: build run
test-fast:
2018-06-15 14:44:25 +00:00
docker run $(DOCKER_FLAGS) -v $$PWD/$*:/senpy-plugins/ -v $$PWD/data:/data/ --rm $(IMAGEWTAG) --only-test $(TEST_FLAGS)
test: docker-build test-fast
2018-07-04 14:42:38 +00:00
dev:
docker run -p $(DEV_PORT):5000 $(DOCKER_FLAGS) -ti $(DOCKER_FLAGS) -v $$PWD/$*:/senpy-plugins/ --entrypoint /bin/bash -v $$PWD/data:/data/ --rm $(IMAGEWTAG)
.PHONY:: test test-fast dev
2018-06-15 07:46:15 +00:00
include .makefiles/base.mk
include .makefiles/k8s.mk