mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 02:00:43 +00:00
7 lines
210 B
Docker
7 lines
210 B
Docker
FROM golang:1.5.2
|
|
ENV GO15VENDOREXPERIMENT 1
|
|
RUN apt-get update && apt-get install -y libpcap-dev python-requests time
|
|
RUN go clean -i net && go install -tags netgo std
|
|
COPY build.sh /
|
|
ENTRYPOINT ["/build.sh"]
|