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
Docker CLI allows you to specify another image to use as the cache source. Pulumi only allows you to use the same image that you're building as a cache source. This is problematic if one wants their images to be immutable. It would be great if you could also specify an arbitrary image as the cache source in Pulumi.
Docker CLI: --cache-from Images to consider as cache sources
/**
* An optional CacheFrom object with information about the build stages to use for the Docker
* build cache. This parameter maps to the --cache-from argument to the Docker CLI. If this
* parameter is `true`, only the final image will be pulled and passed to --cache-from; if it is
* a CacheFrom object, the stages named therein will also be pulled and passed to --cache-from.
*/
cacheFrom?: pulumi.Input<boolean | CacheFrom>;
The text was updated successfully, but these errors were encountered:
Docker CLI allows you to specify another image to use as the cache source. Pulumi only allows you to use the same image that you're building as a cache source. This is problematic if one wants their images to be immutable. It would be great if you could also specify an arbitrary image as the cache source in Pulumi.
Docker CLI:
--cache-from Images to consider as cache sources
npm @pulumi/[email protected]:
The text was updated successfully, but these errors were encountered: