mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-14 18:09:59 +00:00
9 lines
262 B
Docker
9 lines
262 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 app.py /home/weave/
|
|
EXPOSE 5000
|
|
ENTRYPOINT ["python", "/home/weave/app.py"]
|