File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
github-ci/src/biocontainersci Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ def build_manifest(self, f):
239239 hub_manifest = docker_whale .manifest .create (
240240 self .dockerhub_name (f ),
241241 [self .dockerhub_name (f ), self .dockerhub_name (f , is_arm = True )],
242- amend = True
242+ ammend = True
243243 )
244244
245245 # Now, local hub:
@@ -276,7 +276,8 @@ def workflow_arm(self, f):
276276 squash = False ,
277277 nocache = True ,
278278 rm = True ,
279- platform = "linux/arm64"
279+ platform = "linux/arm64" ,
280+ pull = True
280281 )
281282 self .docker_logs (build_logs )
282283 except Exception as e :
@@ -301,8 +302,7 @@ def workflow_arm(self, f):
301302 squash = False ,
302303 nocache = False ,
303304 rm = True ,
304- platform = "linux/arm64"
305-
305+ platform = "linux/arm64" ,
306306 )
307307 if self .local_name (f ):
308308 logging .info ("tag for local registry" )
@@ -384,7 +384,8 @@ def workflow(self, f):
384384 tag = base_container_name ,
385385 squash = False ,
386386 nocache = True ,
387- rm = True
387+ rm = True ,
388+ pull = True
388389 )
389390 self .docker_logs (build_logs )
390391 except Exception as e :
You can’t perform that action at this time.
0 commit comments