Sounds great, do you have an estimate as to what the size difference would be otherwise? To give it some context?
Using buildx
and copying files in stages I managed to get good layer caching. First build takes around 8 minutes on GitHub Actions, and “building” from cache takes <10s.
Same size approximately. 200MB in the registry.
Could you perhaps share the applicable parts of your github actions script, I would love to reduce our build times and seems I can learn a lot from what you’ve accomplished.
this thread helped me, thanks.
1 Like
Instead of
RUN cd dist/bundle/programs/server && \
meteor npm install
Could one maybe use
RUN cp -rl src/node_modules dist/bundle/programs/server/node_modules && \
cd dist/bundle/programs/server && \
meteor npm prune --production
with -l
for hard links?
Or are dependencies in src/package.json
and dist/bundle/programs/server/
different?
I assume one does not need
RUN cd dist/bundle/programs/server && \
meteor npm install --production