Skip to content

Commit 48eb73c

Browse files
committed
add timestamp tag
1 parent b84fc57 commit 48eb73c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

infra/build/functions/build_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,14 +562,14 @@ def get_indexer_build_steps(project_name,
562562
build_lib.DOCKER_TOOL_IMAGE,
563563
'args': [
564564
'container', 'commit', 'indexer-container',
565-
_indexer_built_image_name(project.name)
565+
_indexer_built_image_name(project.name) + f':{timestamp}'
566566
],
567567
}
568568
push_image_step = {
569569
'name': build_lib.DOCKER_TOOL_IMAGE,
570570
'args': [
571571
'push',
572-
_indexer_built_image_name(project.name),
572+
_indexer_built_image_name(project.name) + f':{timestamp}'
573573
],
574574
'allowFailure': True,
575575
}

0 commit comments

Comments
 (0)