mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 10:41:14 +00:00
- Restructure main funcs for clean defer-stack-unwinds - Fix Docker container to handle signals properly - Introduce runsvinit for container init process - Integration test
11 lines
256 B
Makefile
11 lines
256 B
Makefile
.PHONY: docker
|
|
docker: runsvinit
|
|
docker build -t runsvinit-example .
|
|
|
|
runsvinit: runsvinit-linux-amd64.tgz
|
|
tar zxf $<
|
|
|
|
runsvinit-linux-amd64.tgz:
|
|
wget --quiet https://github.com/peterbourgon/runsvinit/releases/download/v2.0.0/runsvinit-linux-amd64.tgz
|
|
|