From 500ef3393df3460861517938fd16c64cab5d0419 Mon Sep 17 00:00:00 2001 From: ryan Date: Sun, 31 Aug 2025 21:30:55 -0400 Subject: [PATCH] fix dockerignore and Makefile --- .dockerignore | 1 + Makefile | 8 ++------ 2 files changed, 3 insertions(+), 6 deletions(-) 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