-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update spa templates to facilitate multi-stage docker builds #41275
Comments
@davidfowl @richlander ptal. |
@tmds thanks for contacting us. This is a good point. At the very least we should have docs covering this scenario. |
Thanks for contacting us. We're moving this issue to the |
Repeating @javiercn ... this is a good point. We should have a design constraint of Docker build-ability. I can see that MSBuild and Docker are not easy to align. Perhaps there needs to be a way to suppress the node/npm commands within msbuild or alternatively specifically target those commands. |
It would be great if we can update the templates to facilitate this scenario. The changes are not complex, and it will provide a common pattern for doing the multi-stage build. If it helps, I can make a PR with a suggestion and we can refine it. |
@tmds I'm ok if we do something on the project to skip the node steps when building inside docker. There is an environment variable we can use. I do have a repo where I did something similar to what you did. https://github.com/javiercn/AngularWithDocker Anything here I'm happy if we key it off of '$(DOTNET_RUNNING_IN_CONTAINER)' == '' @richlander What would need to happen here for us to update the dockerfiles/docker images to better support SPAs? |
Based on investigations, I think it is better we document that you need to install node into the container image in an extra stage and do the build there FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-with-spa
RUN bash -E $(curl -fsSL https://deb.nodesource.com/setup_18.x | bash - ); apt install -y nodejs
From build-with-spa as build |
I have filed a separate issue dotnet/dotnet-docker#3909 to consider adding an additional container image that already contains the node tools installed for web projects. |
Multi-stage builds are best practice and allow to manage build dependencies as images.
They allow the people that build dotnet-docker images to focus on .NET. |
That doesn't conflict with the existence of a simpler option for many people. You don't get that flexibility when you aren't using containers and we consider that to be good enough. I understand that the approach offers some advantages, but it also exposes the user to more complexity that is not necessarily needed in many cases. You can still setup a multi-stage build if you choose to do so even if we offer a simplified process. |
Because it's a best practice, it would be nice if the templates support it. |
We've decided not to make this change in the framework and instead include more details in docs about how to achieve this. /cc @javiercn |
Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.
The spa templates use
npm
for the client-side, anddotnet
for the server-side.The .NET sdk container images do not provide npm. So they can not be used directly to build the spa templates.
Another option is to use a multi-stage build, with a separate stage that uses a node image. The templates are not written to support this scenario.
Describe the solution you'd like
With some tweaks to the template, the project can more easily support a multi-stage build that has a node/npm stage.
Modify the
csproj
:This app can be built using the following multi-stage
Dockerfile
:Additional context
No response
The text was updated successfully, but these errors were encountered: