DockerFiles must start with a Docker image as the base. In our case, this base image is a .NET Core 2.0 Docker image developed by Microsoft.
Our DockerFile must begin with the FROM microsoft/aspnetcore-build line.
The second line in the DockerFile is the working directory; in ...