aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/moon_interface/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'moonv4/moon_interface/Makefile')
-rw-r--r--moonv4/moon_interface/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/moonv4/moon_interface/Makefile b/moonv4/moon_interface/Makefile
new file mode 100644
index 00000000..af91b904
--- /dev/null
+++ b/moonv4/moon_interface/Makefile
@@ -0,0 +1,12 @@
+all: built run
+
+built:
+ docker build -t moon_policy:16.04 .
+
+run:
+ docker run -p 8000:8000 moon_policy:16.04
+
+.PHONY: clean
+
+clean:
+ find . -name "*.py" -exec echo rm {}\;