I am checking the documentation here about deploying Windows container (in preview) in Azure Web App for containers.
Also it appears that the document is lagging behind (as appears to be evolving fast and this is in preview). E.g. In the steps 5 of the Windows container deployment the instructions does not talk about the startup file as shown below. No documentation if this is even mandatory or can be kept empty?
I am seeing error on this pannel at the bottom while trying to deploy the container from image hosted in public repo of Docker Hub.
How to fix the error I am getting?
The error message is: Cannot run this Operating System/Version in Windows Containers. Maximum supported OS version is 10.0.14393.9999.
Here is my docker.yml which I added from VS 2017 by adding "container orchestration support".
FROM microsoft/aspnet:4.7.2-windowsservercore-1803
ARG source
WORKDIR /inetpub/wwwroot
COPY ${source:-obj/Docker/publish} .
And here is the docker-compose.yml
version: '3.4'
services:
webformapp:
image: ${DOCKER_REGISTRY-}webformapp
build:
context: .\WebFormApp
dockerfile: Dockerfile

