Files
linuxkit/alpine/packages/transfused/Makefile
Justin Cormack cbd6fc71a1 clean up transfused build
Signed-off-by: Justin Cormack <justin@specialbusservice.com>
2016-09-12 16:00:53 +01:00

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