aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/moon_orchestrator/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'moonv4/moon_orchestrator/Dockerfile')
-rw-r--r--moonv4/moon_orchestrator/Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/moonv4/moon_orchestrator/Dockerfile b/moonv4/moon_orchestrator/Dockerfile
new file mode 100644
index 00000000..9c1b4662
--- /dev/null
+++ b/moonv4/moon_orchestrator/Dockerfile
@@ -0,0 +1,11 @@
+FROM debian:latest
+
+RUN apt update && apt install python3.5 python3-pip -y
+RUN pip3 install moon_utilities moon_db pip --upgrade
+
+ADD . /root
+WORKDIR /root/
+RUN pip3 install -r requirements.txt
+RUN pip3 install .
+
+CMD ["python3", "-m", "moon_orchestrator"] \ No newline at end of file