mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 09:16:29 +00:00
pkg/init: ruinc and containerd binaries depend on Makefile
Since Makefile contains the hashes we need a dependency otherwise changing the hashes does not necessarily result in the binaries getting updated. Signed-off-by: Ian Campbell <ian.campbell@docker.com>
This commit is contained in:
parent
c7826ef8c2
commit
31e0a848e1
@ -9,11 +9,11 @@ START_STOP_DAEMON=sbin/start-stop-daemon
|
|||||||
|
|
||||||
default: push
|
default: push
|
||||||
|
|
||||||
$(RUNC_BINARY):
|
$(RUNC_BINARY): Makefile
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
docker run --rm --net=none $(RUNC_IMAGE) tar cf - $@ | tar xf -
|
docker run --rm --net=none $(RUNC_IMAGE) tar cf - $@ | tar xf -
|
||||||
|
|
||||||
$(CONTAINERD_BINARIES):
|
$(CONTAINERD_BINARIES): Makefile
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
docker run --rm --net=none $(CONTAINERD_IMAGE) tar cf - $@ | tar xf -
|
docker run --rm --net=none $(CONTAINERD_IMAGE) tar cf - $@ | tar xf -
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user