There are out of the box to have a OCI Instance with Git.
The OCI DEV KIT comes out of the box with GIT. But nevertheless not with docker.
This is 3rd in series to set up the basic tool set to self host Supabase on OCI.
OCI Instance with External Volume
Dockerize an OCI Instance
sudo yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel -y
sudo yum install gcc perl-ExtUtils-MakeMaker -y
cd /usr/local/
sudo wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.32.1.tar.gz
sudo tar -zxvf git-2.32.1.tar.gz
cd git-2.32.1/
sudo make prefix=/usr/local/git all
sudo make prefix=/usr/local/git install
echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
source /etc/bashrc
git --version
Top comments (0)