Skip to content

Instantly share code, notes, and snippets.

@leighghunt
Created February 5, 2020 01:00
Show Gist options
  • Save leighghunt/a96fe207938be8830280e7e2cf1d70cf to your computer and use it in GitHub Desktop.
Save leighghunt/a96fe207938be8830280e7e2cf1d70cf to your computer and use it in GitHub Desktop.
docker container DotNet cheatsheet
  • Open up an interactive docker shell:
docker run -ti ubuntu /bin/bash
  • Update Apt cache, install [stuff].
apt-get update
apt-get install -y wget unzip
  • Referencing Debian packages:
wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
apt-get update
  • Install Runtime or SDK:
#apt-get install dotnet-sdk-3.1
apt-get install -y dotnet-runtime-3.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment