mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-30 03:36:50 +00:00
14 lines
257 B
Makefile
14 lines
257 B
Makefile
all: vsudd
|
|
|
|
DEPS=Dockerfile $(wildcard *.go)
|
|
|
|
vsudd: $(DEPS) ../vendor/manifest
|
|
mkdir -p sbin
|
|
tar cf - $(DEPS) -C .. vendor | docker build -t vsudd:build -
|
|
docker run --rm --net=none vsudd:build | tar xf - -C sbin
|
|
|
|
clean:
|
|
rm -rf sbin
|
|
|
|
.DELETE_ON_ERROR:
|