rename scdf-python-app to polyglot-python-app

This commit is contained in:
Christian Tzolov
2019-05-14 16:22:04 +02:00
parent 3e1628bd54
commit 7d3e7efbda
9 changed files with 0 additions and 0 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 []