December 2019
Intermediate to advanced
528 pages
11h 19m
English
Let's start by creating a new console application; we are going to compile and run this in a Linux container. The console application is created exactly like any other console application, although since we're dealing with Linux, the naming must be in lowercase and cannot contain dots. This makes our solution look a little messy, but nevertheless, let's create salesorder-process:

Our next step is to add Docker support. Here, you could simply create a Docker file manually, but Visual Studio kindly helps us along with this. By right-clicking the project, there is now an Add | Docker Support option:
You'll ...