Add scdf-python-app. fix polyglot-python-task issue

This commit is contained in:
Christian Tzolov
2019-05-13 23:41:17 +02:00
parent 0d84299e61
commit 3e1628bd54
10 changed files with 255 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
FROM python:3.7.3-slim
RUN pip install kafka-python
RUN pip install flask
ADD /util/* /util/
ADD barista_app.py /
ENTRYPOINT ["python","/barista_app.py"]
CMD []