skip to Main Content

Ubuntu – How to install Git on Heroku?

I need my web app in Heroku to have git installed (I'm on the heroku-24 stack). I'm trying to use heroku-community/apt. I created Aptfile with the following content (found it here): https://launchpad.net/~git-core/+archive/ubuntu/ppa/+files/git-all_2.46.0-0ppa1~ubuntu20.04.1_all.deb Then, I added the buildpack: $ heroku buildpacks:add…

VIEW QUESTION

Ubuntu – Installing .NET Core 2.1 SDK in parallel to .NET 8

I am following below commands to install .NET Core 2.1 SDK Enable Microsoft PPA wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb sudo dpkg -i packages-microsoft-prod.deb Installing .NET Core 2.1 SDK sudo apt update sudo apt install apt-transport-https sudo apt install dotnet-sdk-2.1 I already have .NET…

VIEW QUESTION

Ubuntu – Docker cannot extract image

I just update my ubuntu and its kernel has been updated: > uname -r 6.8.0-40-generic Then, I pull a simple image: docker pull alpine:latest And I got the following error: latest: Pulling from library/alpine c6a83fedfae6: Extracting [==================================================>] 3.623MB/3.623MB failed to…

VIEW QUESTION
Back To Top
Search