Containerize ASP.NET Core Applications with Docker and Azure Kubernetes Services

https://www.codeproject.com/Articles/5162506/Containerize-ASP-NET-Core-Applications-with-Docker

Infrastructure as Code in the Cloud

Mike Pfeiffer’s site: https://cloudskills.fm/002

Here are the resources:

Combining a key and certificate into a .pfx file

If you want to use SSL with your site in Azure you need to have a .pfx file.

We Apache you most likely have a certificate and a private key. I am using certificate from Letsencrypt.

Using openssl you can generate the .pfx file like this:

openssl pkcs12 -export -out /tmp/certificate.pfx
-inkey /etc/letsencrypt/live/yourdomain.tld/privkey.pem
-in /etc/letsencrypt/live/yourdomain.tld/cert.pem
-certfile /etc/letsencrypt/live/yourdomain.tld/chain.pem

Replace yourdomain.tld with your actual domain name.
You will be asked for a password to protect the .pfx file

How to Build a Chat Bot Using Azure Bot Service and Train It with LUIS

https://blogs.msdn.microsoft.com/uk_faculty_connection/2017/09/08/how-to-build-a-chat-bot-using-azure-bot-service-and-train-it-with-luis/