mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-11 03:04:07 +00:00
9 lines
194 B
Makefile
9 lines
194 B
Makefile
DEPS=Dockerfile $(wildcard *.c *.h)
|
|
|
|
transfused: $(DEPS)
|
|
tar cf - $(DEPS) | docker build -t transfused:build -
|
|
docker run --rm --net=none transfused:build | tar xf -
|
|
|
|
clean:
|
|
rm -f transfused
|