We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d137094 commit 589d7e3Copy full SHA for 589d7e3
1 file changed
Dockerfile
@@ -12,10 +12,10 @@ RUN npm install -g @angular/cli@9.1.15
12
COPY . .
13
RUN dotnet restore
14
15
-WORKDIR /source/MyApp
+WORKDIR /source/AngularSpaTemplate
16
RUN dotnet publish -c release -o /app --no-restore
17
18
FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime
19
WORKDIR /app
20
COPY --from=build /app ./
21
-ENTRYPOINT ["dotnet", "MyApp.dll"]
+ENTRYPOINT ["dotnet", "AngularSpaTemplate.dll"]
0 commit comments