diff --git a/.dockerignore b/.dockerignore index 1fcb152..ecd8ac3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1 +1,2 @@ +Makefile out diff --git a/Makefile b/Makefile index 0168691..5c2d96a 100644 --- a/Makefile +++ b/Makefile @@ -6,17 +6,13 @@ default: out/nitro.eif out: mkdir out -out/nitro.eif: out \ - $(shell git ls-files \ - src/init \ - src/aws \ - ) +out/nitro.eif: out docker build \ --tag $(REGISTRY)/enclaveos \ --progress=plain \ --output type=local,rewrite-timestamp=true,dest=out\ -f Containerfile \ - src/ + . .PHONY: run run: out/nitro.eif