9 lines
210 B
Makefile
9 lines
210 B
Makefile
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
|