From d94c99b36ae285b8e3a24f17384fd0634d67877a Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 25 Jan 2026 19:45:21 +0100 Subject: [PATCH] makefile: update docker targets --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6f89a7b..eaf7b03 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,8 @@ -build-all: +docker: docker build -t wasm-base wasm-base + +run: + docker run --rm -it wasm-base:latest /bin/bash + +run-external: + docker run --rm -it -v "./wasm-base/examples:/home/ubuntu/examples" wasm-base:latest /bin/bash