Files
weave-scope/experimental/example/client/Dockerfile
2016-01-28 14:22:37 -08:00

8 lines
256 B
Docker

FROM tatsushid/tinycore-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 client.py /home/weave/
ENTRYPOINT ["python", "/home/weave/client.py"]