mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 18:20:27 +00:00
As well as upgrading to latest stable being nice in general, this was triggered by an issue where we could no longer find the bash package in 3.3 This upgrade also lets us get rid of reliance on the edge (rolling latest) repository for runit, since 3.5 now contains runit natively.
15 lines
456 B
Docker
15 lines
456 B
Docker
FROM alpine:3.5
|
|
MAINTAINER Weaveworks Inc <help@weave.works>
|
|
LABEL works.weave.role=system
|
|
WORKDIR /home/weave
|
|
RUN 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"]
|