Skip to content

Commit 589d7e3

Browse files
committed
Fix Dockerfile.
1 parent d137094 commit 589d7e3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ RUN npm install -g @angular/cli@9.1.15
1212
COPY . .
1313
RUN dotnet restore
1414

15-
WORKDIR /source/MyApp
15+
WORKDIR /source/AngularSpaTemplate
1616
RUN dotnet publish -c release -o /app --no-restore
1717

1818
FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime
1919
WORKDIR /app
2020
COPY --from=build /app ./
21-
ENTRYPOINT ["dotnet", "MyApp.dll"]
21+
ENTRYPOINT ["dotnet", "AngularSpaTemplate.dll"]

0 commit comments

Comments
 (0)