Install the Wave CLI
To install the wave CLI for your platform, complete the following steps:
-
Download the latest version of the Wave CLI for your platform.
-
In a new terminal, complete the following steps:
- Move the executable from your downloads folder to a location in your
PATH, such as~/bin. For example:mv wave-cli-0.8.0-macos-x86_64 ~/bin/wave - Ensure that the executable bit is set. For example:
chmod u+x ~/bin/wave
- Move the executable from your downloads folder to a location in your
-
Verify that you can build containers with Wave:
-
Create a basic
Dockerfile:cat << EOF > ./Dockerfile
FROM busybox:latest
EOF -
Use the CLI to build the container:
wave -f DockerfileExample output:
wave.seqera.io/wt/xxxxxxxxxxxx/wave/build:xxxxxxxxxxxxxxxx
-