Skip to content

Latest commit

 

History

History

docker

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Build the image

docker build -t ya0guang/pobf --build-arg RUST_TOOLCHAIN=$(cat ../rust-toolchain) .

Run the image WITH SGX support

Interactive Shell

docker run -it --entrypoint /bin/bash -v /var/run/aesmd:/var/run/aesmd --device=/dev/sgx/enclave --device=/dev/sgx/provision -v $(pwd)/..:/Code/PoBF -v ya0guang/pobf

Simple Commands

docker run -it --entrypoint /bin/bash -v /var/run/aesmd:/var/run/aesmd --device=/dev/sgx/enclave --device=/dev/sgx/provision -v $(pwd)/..:/Code/PoBF -v ya0guang/pobf "COMMAND_TO_RUN"

e.g., make and make clean.