From c6cbfea94f51536b11e46bfe7053e1fb96c0a968 Mon Sep 17 00:00:00 2001 From: asteroide Date: Tue, 25 Jul 2017 18:18:05 +0200 Subject: Containerize the orchestrator and all components Change-Id: I9234c3d286e0a273c878bbac66efcd9696490900 --- moonv4/moon_orchestrator/Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 moonv4/moon_orchestrator/Dockerfile (limited to 'moonv4/moon_orchestrator/Dockerfile') 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 -- cgit 1.2.3-korg