mirror of
https://github.com/peterbourgon/runsvinit.git
synced 2024-12-16 14:57:04 +00:00
10 lines
196 B
Makefile
10 lines
196 B
Makefile
|
.PHONY: all
|
||
|
all: zombie runsvinit
|
||
|
|
||
|
zombie runsvinit: .uptodate
|
||
|
docker run -ti --rm -v $(shell pwd):/mount zombie-build
|
||
|
|
||
|
.uptodate: Dockerfile ../../*.go
|
||
|
docker build -t zombie-build .
|
||
|
touch $@
|