README: use soup

This commit is contained in:
Ryan Heywood 2025-07-13 02:14:59 -04:00
parent 5507029928
commit e2f45c726b
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 9 additions and 2 deletions

View File

@ -5,12 +5,19 @@
## Testing with AWS on Amazon Linux ## Testing with AWS on Amazon Linux
Ensure the instance is set up with Nitro Enclaves, and run the following Ensure the instance is set up with Nitro Enclaves, and run the following
command: command to install and enable nitro enclave support:
```sh ```sh
dnf install aws-nitro-enclaves-cli make # You can leave off `git` if you've already installed it to clone the repo.
sudo dnf install aws-nitro-enclaves-cli make git
sudo systemctl enable --now nitro-enclaves-allocator.service
# Add the current user to the Docker group
sudo usermod -aG docker $USER
``` ```
You may need to reconnect to change the signed-in users. Use `groups` to see if
you are in the `docker` group.
Then, the EIF can be built using: Then, the EIF can be built using:
```sh ```sh