S2I: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
(Created page with "==References== {| | valign="top" | * [https://github.com/openshift/source-to-image/releases S2I » Releases] * [https://github.com/openshift/source-to-image S2I] | valign="...")
 
No edit summary
Line 1: Line 1:
<source lang="bash">
wget -cq https://github.com/openshift/source-to-image/releases/download/v1.3.9/source-to-image-v1.3.9-574a2640-linux-amd64.tar.gz -P ${HOME}/Downloads
tar -xzf ${HOME}/Downloads/source-to-image-v1.3.9-574a2640-linux-amd64.tar.gz -C ${HOME}/Downloads
rm  -rf  ${HOME}/Downloads/source-to-image-v1.3.9-574a2640-linux-amd64.tar.gz
sudo mv  ${HOME}/Downloads/{s2i,sti} /usr/local/bin
# source-to-image using go language
go install github.com/openshift/source-to-image/cmd/s2i@latest
brew install source-to-image
</source>
==References==
==References==
{|
{|

Revision as of 22:07, 22 February 2024

wget -cq https://github.com/openshift/source-to-image/releases/download/v1.3.9/source-to-image-v1.3.9-574a2640-linux-amd64.tar.gz -P ${HOME}/Downloads
tar -xzf ${HOME}/Downloads/source-to-image-v1.3.9-574a2640-linux-amd64.tar.gz -C ${HOME}/Downloads
rm  -rf  ${HOME}/Downloads/source-to-image-v1.3.9-574a2640-linux-amd64.tar.gz
sudo mv  ${HOME}/Downloads/{s2i,sti} /usr/local/bin

# source-to-image using go language
go install github.com/openshift/source-to-image/cmd/s2i@latest
brew install source-to-image

References