Skip to content

Instantly share code, notes, and snippets.

@sjwaight
Last active March 29, 2021 05:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sjwaight/da87f2942b87ff616725485f220d2e98 to your computer and use it in GitHub Desktop.
Save sjwaight/da87f2942b87ff616725485f220d2e98 to your computer and use it in GitHub Desktop.
Default Visual Studio 2019 Container Tools Dockerfile
#Depending on the operating system of the host machines(s) that will build or run the containers, the image specified in the FROM statement may need to be changed.
#For more information, please see https://aka.ms/containercompat
FROM mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019
ARG source
WORKDIR /inetpub/wwwroot
COPY ${source:-obj/Docker/publish} .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment