
Deploy a Containerized Net Core Application
The example code is in the following repository:
Repository
Run the app locally
dotnet run
Build a Linux container
docker build -t webappnetcore -f Dockerfile .
Run in a Linux container
docker run -d -p 8000:8080 webappnetcore
It should show in ...
Read: https://jesusegarcia.hashnode.dev/deploy-a-containerized-net-core-application
The example code is in the following repository:
Repository
Run the app locally
dotnet run
Build a Linux container
docker build -t webappnetcore -f Dockerfile .
Run in a Linux container
docker run -d -p 8000:8080 webappnetcore
It should show in ...
Read: https://jesusegarcia.hashnode.dev/deploy-a-containerized-net-core-application