# The `FROM` instruction specifies the base image. You are
# extending the `microsoft/aspnet` image.

FROM microsoft/aspnet:4.6.2

# The final instruction copies the site you published earlier into the container.
COPY . /inetpub/wwwroot

#RUN ["powershell", "Start-Process", "c:\\inetpub\\wwwroot\\RddListener.exe", "-NoNewWindow"]

	