/docker-with-dotnet-core

Samples to demonstrate building containerised dotnet core apps

Primary LanguageC#MIT LicenseMIT

Summary

This sample demonstrates using a docker multi-stage build to build a containerised dotnet core console app

Prerequisites

  • Docker for the platform you run this on (Windows, Mac, Linux)
  • If you want to debug locally, you'll need dotnet core SDK

How to use

To build the image:

  • Open a terminal/command prompt with the path set to the directory that contains the dockerfile
  • Run the following from a terminal/command prompt
docker build -t simple-daemon .
  • This will produce an image called simple-daemon. You can spin up a container from the image as follows
docker run simple-daemon
# should print Hello World

Docker images for .NET Core

Documentation on MS Docs