mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-05 13:04:08 +00:00
17 lines
343 B
Makefile
17 lines
343 B
Makefile
all: vsudd
|
|
|
|
files:
|
|
ls Dockerfile *.go > files
|
|
printf -- '-C\n..\n' >> files
|
|
(cd .. && find vendor) >> files
|
|
|
|
vsudd: Dockerfile $(wildcard *.go) ../vendor/manifest files
|
|
mkdir -p sbin
|
|
tar cf - -T files | docker build -t vsudd:build -
|
|
docker run --rm --net=none vsudd:build | tar xf - -C sbin
|
|
|
|
clean:
|
|
rm -rf sbin files
|
|
|
|
.DELETE_ON_ERROR:
|