occlum/demos/rust/run_rust_demo_on_occlum.sh

17 lines
304 B
Bash
Executable File

#!/bin/bash
set -e
# compile rust_app
pushd rust_app
occlum-cargo build
popd
# initialize occlum workspace
rm -rf occlum_instance && mkdir occlum_instance && cd occlum_instance
occlum init
cp ../rust_app/target/x86_64-unknown-linux-musl/debug/rust_app image/bin
occlum build
occlum run /bin/rust_app