Fix build ssh path to be relative to directory of compose file

Signed-off-by: Monika Kairaityte <monika@kibit.lt>
This commit is contained in:
Monika Kairaityte 2025-05-21 19:35:50 +03:00
parent c26e188991
commit 08d06df0f2
5 changed files with 157 additions and 0 deletions

View File

@ -0,0 +1 @@
Fixed build ssh path to a local SSH key, to be relative to the directory of compose file.

View File

@ -2644,6 +2644,16 @@ def is_path_git_url(path):
return r.scheme == 'git' or r.path.endswith('.git')
def adjust_build_ssh_key_paths(compose, agent_or_key):
# when using a custom id for ssh property, path to a local SSH key is provided after "="
parts = agent_or_key.split("=", 1)
if len(parts) == 1:
return agent_or_key
name, path = parts
path = os.path.expanduser(path)
return name + "=" + os.path.join(compose.dirname, path)
def container_to_build_args(compose, cnt, args, path_exists, cleanup_callbacks=None):
build_desc = cnt["build"]
if not hasattr(build_desc, "items"):
@ -2712,6 +2722,7 @@ def container_to_build_args(compose, cnt, args, path_exists, cleanup_callbacks=N
if "target" in build_desc:
build_args.extend(["--target", build_desc["target"]])
for agent_or_key in norm_as_list(build_desc.get("ssh", {})):
agent_or_key = adjust_build_ssh_key_paths(compose, agent_or_key)
build_args.extend(["--ssh", agent_or_key])
container_to_ulimit_build_args(cnt, build_args)
if getattr(args, "no_cache", None):

View File

@ -1,5 +1,6 @@
-e .
coverage==7.4.3
cryptography==44.0.3
parameterized==0.9.0
pytest==8.0.2
tox==4.13.0

View File

@ -0,0 +1 @@

View File

@ -219,3 +219,146 @@ class TestContainerToBuildArgs(unittest.TestCase):
with self.assertRaises(OSError):
container_to_build_args(c, cnt, args, lambda path: False)
def test_build_ssh_absolute_path(self):
c = create_compose_mock()
cnt = get_minimal_container()
cnt['build']['ssh'] = ["id1=/test1"]
args = get_minimal_args()
args = container_to_build_args(c, cnt, args, lambda path: True)
self.assertEqual(
args,
[
'-f',
'Containerfile',
'-t',
'new-image',
'--ssh',
'id1=/test1',
'--no-cache',
'--pull-always',
'.',
],
)
def test_build_ssh_relative_path(self):
c = create_compose_mock()
cnt = get_minimal_container()
cnt['build']['ssh'] = ["id1=id1/test1"]
args = get_minimal_args()
args = container_to_build_args(c, cnt, args, lambda path: True)
self.assertEqual(
args,
[
'-f',
'Containerfile',
'-t',
'new-image',
'--ssh',
'id1=test_dirname/id1/test1',
'--no-cache',
'--pull-always',
'.',
],
)
def test_build_ssh_working_dir(self):
c = create_compose_mock()
cnt = get_minimal_container()
cnt['build']['ssh'] = ["id1=./test1"]
args = get_minimal_args()
args = container_to_build_args(c, cnt, args, lambda path: True)
self.assertEqual(
args,
[
'-f',
'Containerfile',
'-t',
'new-image',
'--ssh',
'id1=test_dirname/./test1',
'--no-cache',
'--pull-always',
'.',
],
)
@mock.patch.dict(os.environ, {"HOME": "/home/user"}, clear=True)
def test_build_ssh_path_home_dir(self):
c = create_compose_mock()
cnt = get_minimal_container()
cnt['build']['ssh'] = ["id1=~/test1"]
args = get_minimal_args()
args = container_to_build_args(c, cnt, args, lambda path: True)
self.assertEqual(
args,
[
'-f',
'Containerfile',
'-t',
'new-image',
'--ssh',
'id1=/home/user/test1',
'--no-cache',
'--pull-always',
'.',
],
)
def test_build_ssh_map(self):
c = create_compose_mock()
cnt = get_minimal_container()
cnt['build']['ssh'] = {"id1": "test1", "id2": "test2"}
args = get_minimal_args()
args = container_to_build_args(c, cnt, args, lambda path: True)
self.assertEqual(
args,
[
'-f',
'Containerfile',
'-t',
'new-image',
'--ssh',
'id1=test_dirname/test1',
'--ssh',
'id2=test_dirname/test2',
'--no-cache',
'--pull-always',
'.',
],
)
def test_build_ssh_array(self):
c = create_compose_mock()
cnt = get_minimal_container()
cnt['build']['ssh'] = ['id1=test1', 'id2=test2']
args = get_minimal_args()
args = container_to_build_args(c, cnt, args, lambda path: True)
self.assertEqual(
args,
[
'-f',
'Containerfile',
'-t',
'new-image',
'--ssh',
'id1=test_dirname/test1',
'--ssh',
'id2=test_dirname/test2',
'--no-cache',
'--pull-always',
'.',
],
)