Update demo for tracer

This commit is contained in:
Tom Wilkie
2016-03-10 13:25:19 +00:00
parent b2c0c93d5e
commit bd760f6e76
14 changed files with 207 additions and 48 deletions
@@ -0,0 +1,8 @@
FROM python:2.7
MAINTAINER Weaveworks Inc <help@weave.works>
WORKDIR /home/weave
ADD requirements.txt /home/weave/
RUN pip install -r /home/weave/requirements.txt
ADD app.py /home/weave/
EXPOSE 5000
ENTRYPOINT ["python", "/home/weave/app.py"]