From 56c492c761d04cee34832c7875b692b7910f7f20 Mon Sep 17 00:00:00 2001 From: Marco Zeisler Date: Fri, 28 May 2021 19:05:40 +0200 Subject: [PATCH] added orchestration Dockerfile --- components/orchestration/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 components/orchestration/Dockerfile diff --git a/components/orchestration/Dockerfile b/components/orchestration/Dockerfile new file mode 100644 index 0000000..5af1e07 --- /dev/null +++ b/components/orchestration/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.8-slim +COPY . /app +WORKDIR /app +RUN pip install -r requirements.txt +RUN cd deps; ls; pip install dse-shared-libs-1.tar.gz; +ENTRYPOINT [ "python" ] +CMD [ "orchestration_server.py" ] \ No newline at end of file