mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-02 17:50:39 +00:00
* Don't reencode reports in the collector * Review feedback * Fix comment * Update alpine URLs so it will build * Fix tests
16 lines
545 B
Docker
16 lines
545 B
Docker
FROM alpine:3.3
|
|
MAINTAINER Weaveworks Inc <help@weave.works>
|
|
LABEL works.weave.role=system
|
|
WORKDIR /home/weave
|
|
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >>/etc/apk/repositories && \
|
|
apk add --update bash runit conntrack-tools iproute2 util-linux curl && \
|
|
rm -rf /var/cache/apk/*
|
|
ADD ./docker.tgz /
|
|
ADD ./demo.json /
|
|
ADD ./weave /usr/bin/
|
|
COPY ./scope ./runsvinit ./entrypoint.sh /home/weave/
|
|
COPY ./run-app /etc/service/app/run
|
|
COPY ./run-probe /etc/service/probe/run
|
|
EXPOSE 4040
|
|
ENTRYPOINT ["/home/weave/entrypoint.sh"]
|