File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/main/java/io/fabric8/maven/docker/config/handler/property Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ private BuildImageConfiguration extractBuildConfiguration(ImageConfiguration fro
144144 .cleanup (valueProvider .getString (CLEANUP , config == null ? null : config .getCleanup ()))
145145 .noCache (valueProvider .getBoolean (NO_CACHE , config == null ? null : config .getNoCache ()))
146146 .squash (valueProvider .getBoolean (SQUASH , config == null ? null : config .getSquash ()))
147- .cacheFrom (valueProvider .getString (CACHE_FROM , config == null ? null : ( config .getCacheFrom () == null ? null : config . getCacheFrom (). toString () )))
147+ .cacheFrom (valueProvider .getList (CACHE_FROM , config == null ? null : config .getCacheFrom ()))
148148 .optimise (valueProvider .getBoolean (OPTIMISE , config == null ? null : config .getOptimise ()))
149149 .entryPoint (extractArguments (valueProvider , ENTRYPOINT , config == null ? null : config .getEntryPoint ()))
150150 .assembly (extractAssembly (config == null ? null : config .getAssemblyConfiguration (), valueProvider ))
You can’t perform that action at this time.
0 commit comments