Skip to content

Repository to check new .Net 6 functionality, and assess applicability for micro-services

Notifications You must be signed in to change notification settings

pbronneberg/dotnet6-microservice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DOTNET 6 Microservice Examples

CI

Repository to check new .Net 6 functionality.

Prerequisites

Notes

Support on AWS for .Net 6 is documented by Amazon in GitHub. As can be seen from the AWS Developer documentation .Net 6 is a first-class citizen on AWS.

Minimal API

API style competing with 'Python FAST API'

  • Scaffolding: dotnet new webapi -minimal -o minimal
  • Location: ./minimal
  • Background info: MSDN Tutorial
  • Docker Image size: 104MB (alpine)

Building & Running

On a local machine with SDK installed:

dotnet restore minimal
dotnet run minimal

Using docker:

docker build ./minimal -t minimal:latest
docker run -p:8000:80 minimal:latest

About

Repository to check new .Net 6 functionality, and assess applicability for micro-services

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published