File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 10
10
"request" : " launch" ,
11
11
"preLaunchTask" : " build" ,
12
12
// If you have changed target frameworks, make sure to update the program path.
13
- "program" : " ${workspaceFolder}/WebGoatCore/bin/Debug/netcoreapp3 .0/WebGoatCore.dll" ,
13
+ "program" : " ${workspaceFolder}/WebGoatCore/bin/Debug/net5 .0/WebGoatCore.dll" ,
14
14
"args" : [],
15
15
"cwd" : " ${workspaceFolder}/WebGoatCore" ,
16
16
"stopAtEntry" : false ,
Original file line number Diff line number Diff line change 1
1
# https://hub.docker.com/_/microsoft-dotnet-core
2
- FROM mcr.microsoft.com/dotnet/core/ sdk:3.1 AS build
2
+ FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
3
3
WORKDIR ./sources
4
4
5
5
# copy everything else and build app
@@ -8,7 +8,7 @@ WORKDIR ./sources/WebGoatCore
8
8
RUN dotnet publish -c release -o /app
9
9
10
10
# final stage/image
11
- FROM mcr.microsoft.com/dotnet/core/ aspnet:3.1
11
+ FROM mcr.microsoft.com/dotnet/aspnet:5.0
12
12
WORKDIR /app
13
13
COPY --from=build /app ./
14
14
ENTRYPOINT ["dotnet" , "WebGoatCore.dll" ]
You can’t perform that action at this time.
0 commit comments