mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-02 17:50:39 +00:00
We needed it because some of our invocations of Weave Net's `weave` script depended on it, but that is no longer the case as of Weave Net 2.1. Fixes #2974.
10 lines
360 B
Docker
10 lines
360 B
Docker
FROM alpine:3.5
|
|
LABEL maintainer="Weaveworks Inc <help@weave.works>"
|
|
LABEL works.weave.role=system
|
|
WORKDIR /home/weave
|
|
RUN apk add --update bash conntrack-tools iproute2 util-linux curl && \
|
|
rm -rf /var/cache/apk/*
|
|
ADD ./weave ./weaveutil /usr/bin/
|
|
COPY ./scope /home/weave/
|
|
ENTRYPOINT ["/home/weave/scope", "--mode=probe", "--no-app", "--probe.docker=true"]
|