added orchestration Dockerfile

This commit is contained in:
Marco Zeisler 2021-05-28 19:05:40 +02:00
parent 970fee8456
commit 56c492c761

View File

@ -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" ]