You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM foo AS base
## do some heavy lifting here, like deps installsFROM base AS build1
## builds sub project 1FROM base AS build2
## builds sub project 2
Will the bake command first build base and then proceed to build build1 and build2 in parallel?
Or will it build both build1 and build2 in parallel, effectively executing base twice?
It appears to be doing the latter from the logs, but I wonder if it's just how logs are presented. And, perhaps, under the hood, is just one build happening for base?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
For example, if I have:
Will the bake command first build
base
and then proceed to buildbuild1
andbuild2
in parallel?Or will it build both
build1
andbuild2
in parallel, effectively executingbase
twice?It appears to be doing the latter from the logs, but I wonder if it's just how logs are presented. And, perhaps, under the hood, is just one build happening for
base
?Beta Was this translation helpful? Give feedback.
All reactions