Hey,
Thanks for the container, works great 👍
I'm not sure is it possible to solve as part of Dockerfile definition or a description needed to be added to README but I've noticed significant slow downs on startup of meteor app first time container is launched.
See example for a very small app(only 5 packages including core):
> du -d0Hm ~/.meteor/
308944 /root/.meteor/
> meteor
.....
> du -d0Hm ~/.meteor/
334412 /root/.meteor/
As soon as I stop the container it will reset back to 308944 as expected. Which means EVERY time I start a dev container for this app it will try to build up cache again which results in significant extra download.
Any ideas on how to fix it ? I've tried to mount ~/.meteor inside the container but it doesn't seem to work.
Hey,
Thanks for the container, works great 👍
I'm not sure is it possible to solve as part of Dockerfile definition or a description needed to be added to README but I've noticed significant slow downs on startup of meteor app first time container is launched.
See example for a very small app(only 5 packages including core):
As soon as I stop the container it will reset back to 308944 as expected. Which means EVERY time I start a dev container for this app it will try to build up cache again which results in significant extra download.
Any ideas on how to fix it ? I've tried to mount ~/.meteor inside the container but it doesn't seem to work.