Hi Folks. Currently trying to get a build bundle that I can make into a docker image. I’m able to create one but am having trouble finding information about exactly what should be in the bundle.
For instance the bundle is weighing in at 366MB and most of this space seems to be in node_module folders (programs/server/npm/node_modules, programs/server/assets/app/node_modules, programs/web.browser/app/node_modules).
Am I being thick in that I thought “meteor build” would concatenate all the files down to single packages? Are the node_modules required to run the app?
If you are running a deployed meteor app in docker, what size are your docker images (i’m using node-alpine as a base image)? node-alpine is 40MB and my meteor image is 699MB which seems a bit excessive.
Yours hopefully