1. % mkdir -p bundle/rootfs
    2. % docker create --name a_new_rootfs alpine:latest true
    3. % docker export a_new_rootfs | tar xvfC - bundle/rootfs
    4. % runc spec -b bundle
    5. % runc run -b bundle container
    6. / # # This is inside the container now.