feat: add run command and fix output format
This commit is contained in:
parent
58d68a43d5
commit
a4a0edfe8a
17
Makefile
17
Makefile
|
@ -14,11 +14,16 @@ out/enclaveos.tar: out \
|
||||||
docker build \
|
docker build \
|
||||||
--tag $(REGISTRY)/enclaveos \
|
--tag $(REGISTRY)/enclaveos \
|
||||||
--progress=plain \
|
--progress=plain \
|
||||||
--output "\
|
--output type=local,rewrite-timestamp=true,dest=out\
|
||||||
type=oci,\
|
|
||||||
rewrite-timestamp=true,\
|
|
||||||
force-compression=true,\
|
|
||||||
name=enclaveos,\
|
|
||||||
dest=$@" \
|
|
||||||
-f Containerfile \
|
-f Containerfile \
|
||||||
src/
|
src/
|
||||||
|
|
||||||
|
.PHONY: run
|
||||||
|
run: out/nitro.eif
|
||||||
|
sudo nitro-cli \
|
||||||
|
run-enclave \
|
||||||
|
--cpu-count 2 \
|
||||||
|
--memory 512M \
|
||||||
|
--eif-path out/nitro.eif \
|
||||||
|
--debug-mode \
|
||||||
|
--attach-console
|
Loading…
Reference in New Issue