The files in this directory are used to implement a skeleton enclave runtime,in order to help to write your own enclave runtime.# Build liberpal-skeleton.so```shellcd"$GOPATH/src/github.com/alibaba/inclavare-containers/rune"make all```# Build skeleton docker image```shellcd"$GOPATH/src/github.com/alibaba/inclavare-containers/rune/libenclave/internal/runtime/pal/skeleton"cat>Dockerfile <<EOFFROM centos:7.2.1511RUN mkdir -p /run/runeWORKDIR /run/runeRUN yum install -y libseccomp-develCOPY liberpal-skeleton.so .RUN ldconfigEOFdocker build .-t liberpal-skeleton```# Run skeleton docker image```shelldocker run -it--rm--runtime=rune \-eENCLAVE_TYPE=intelSgx \-eENCLAVE_RUNTIME_PATH=/run/rune/liberpal-skeleton.so \-eENCLAVE_RUNTIME_ARGS="skeleton,debug"\ liberpal-skeleton```