Skip to content

Commit

Permalink
Fixed frontend build path 'build' -> 'dist'
Browse files Browse the repository at this point in the history
  • Loading branch information
pkirilin committed Oct 15, 2023
1 parent 4e46248 commit 2ed7703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN yarn build
FROM mcr.microsoft.com/dotnet/aspnet:6.0
WORKDIR /app
COPY --from=backend app/publish .
COPY --from=frontend app/build frontend/build
COPY --from=frontend app/dist frontend/dist
EXPOSE 80
ENV Logging__Console__FormatterName=Simple
ENTRYPOINT ["dotnet", "FoodDiary.API.dll"]

0 comments on commit 2ed7703

Please sign in to comment.