Skip to content

Instantly share code, notes, and snippets.

@sajayantony
Last active October 2, 2019 02:33
Show Gist options
  • Save sajayantony/0946e8d50cdcbc04f200669e40f165e3 to your computer and use it in GitHub Desktop.
Save sajayantony/0946e8d50cdcbc04f200669e40f165e3 to your computer and use it in GitHub Desktop.

Instruction to install ORAS

Download the releases from here https://github.com/deislabs/oras/releases

Linux

curl -sLO  https://github.com/deislabs/oras/releases/download/v0.7.0/oras_0.7.0_linux_amd64.tar.gz && \
tar -xvzf oras_0.7.0_linux_amd64.tar.gz && \
sudo cp ./oras /usr/local/bin/

Windows

Add %USERPROFILE%\bin\ to your PATH environment variable so that oras.exe can be found.

curl.exe -sLO  https://github.com/deislabs/oras/releases/download/v0.7.0/oras_0.7.0_windows_amd64.tar.gz
tar.exe -xvzf oras_0.7.0_windows_amd64.tar.gz
mkdir -p %USERPROFILE%\bin\
copy oras.exe %USERPROFILE%\bin\
set PATH=%USERPROFILE%\bin\;%PATH%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment