diff --git a/Dockerfile b/Dockerfile index 8d88e6d..1a34e58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,10 +12,10 @@ RUN npm install -g @angular/cli@9.1.15 COPY . . RUN dotnet restore -WORKDIR /source/MyApp +WORKDIR /source/AngularSpaTemplate RUN dotnet publish -c release -o /app --no-restore FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime WORKDIR /app COPY --from=build /app ./ -ENTRYPOINT ["dotnet", "MyApp.dll"] \ No newline at end of file +ENTRYPOINT ["dotnet", "AngularSpaTemplate.dll"] \ No newline at end of file