Search⌘ K
AI Features

.NET Core

Explore how to package and run an ASP.NET Core REST API within a Docker container. Understand project files, Dockerfile configuration, and running the application locally for development purposes.

We'll cover the following...

Files

You can find these files in the code/common-development-profiles/demos/aspnet-core folder.

A static HTML file to be served:

...

HTML
<h1>Hello !</h1>
<p>This page is served by ASP.NET Core</p>
<p>Try our <a href="/v1/square/4">multiply API</a>.</p>

A REST API coded with ...