We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15e358b commit 3541fd1Copy full SHA for 3541fd1
Dockerfile
@@ -4,10 +4,10 @@ WORKDIR /source
4
COPY . .
5
RUN dotnet restore
6
7
-WORKDIR /source/mvc
+WORKDIR /source/MyApp
8
RUN dotnet publish -c release -o /app --no-restore
9
10
FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime
11
WORKDIR /app
12
COPY --from=build /app ./
13
-ENTRYPOINT ["dotnet", "mvc.dll"]
+ENTRYPOINT ["dotnet", "MyApp.dll"]
0 commit comments