update asp.net-mssql sample
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
This commit is contained in:
parent
80dcce97b4
commit
9c829ac4ba
77 changed files with 75 additions and 824 deletions
18
samples/aspnet-mssql/app/Dockerfile
Executable file
18
samples/aspnet-mssql/app/Dockerfile
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
FROM mcr.microsoft.com/dotnet/core/sdk:2.1 AS build
|
||||
WORKDIR /app
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /app/aspnetapp
|
||||
RUN dotnet publish -c Release -o out
|
||||
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/core/aspnet:2.1 AS runtime
|
||||
WORKDIR /app
|
||||
COPY --from=build /app/aspnetapp/out ./
|
||||
ENTRYPOINT ["dotnet", "aspnetapp.dll"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue