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