9 lines
234 B
Makefile
9 lines
234 B
Makefile
docker:
|
|
docker build -t wasm-base -f wasm-base.dockerfile .
|
|
|
|
run:
|
|
docker run --rm -it wasm-base:latest /usr/bin/fish
|
|
|
|
run-external:
|
|
docker run --rm -it -v "./wasm-base/examples:/home/ubuntu/examples" wasm-base:latest /usr/bin/fish
|