mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 18:20:27 +00:00
7 lines
191 B
Docker
7 lines
191 B
Docker
FROM python:2.7
|
|
MAINTAINER Weaveworks Inc <help@weave.works>
|
|
ADD . /home/weave
|
|
WORKDIR /home/weave
|
|
RUN pip install -r /home/weave/requirements.txt
|
|
ENTRYPOINT ["python", "/home/weave/app.py"]
|