mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-22 16:03:16 +01:00
Merge pull request #978 from PlugNPush/main
Restore support for alt dockerfiles (removing hardcoded "Dockerfile")
This commit is contained in:
commit
d9a3572461
1
newsfragments/978.bugfix
Normal file
1
newsfragments/978.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Fixed support for de-facto alternative `Dockerfile` names (e.g. `Containerfile`)
|
@ -1527,12 +1527,8 @@ def normalize_service_final(service: dict, project_dir: str) -> dict:
|
||||
build = service["build"]
|
||||
context = build if is_str(build) else build.get("context", ".")
|
||||
context = os.path.normpath(os.path.join(project_dir, context))
|
||||
dockerfile = (
|
||||
"Dockerfile" if is_str(build) else service["build"].get("dockerfile", "Dockerfile")
|
||||
)
|
||||
if not is_dict(service["build"]):
|
||||
service["build"] = {}
|
||||
service["build"]["dockerfile"] = dockerfile
|
||||
service["build"]["context"] = context
|
||||
return service
|
||||
|
||||
|
@ -22,7 +22,7 @@ class TestNormalizeFinalBuild(unittest.TestCase):
|
||||
(
|
||||
{"build": "."},
|
||||
{
|
||||
"build": {"context": cwd, "dockerfile": "Dockerfile"},
|
||||
"build": {"context": cwd},
|
||||
},
|
||||
),
|
||||
(
|
||||
@ -30,7 +30,6 @@ class TestNormalizeFinalBuild(unittest.TestCase):
|
||||
{
|
||||
"build": {
|
||||
"context": os.path.normpath(os.path.join(cwd, "../relative")),
|
||||
"dockerfile": "Dockerfile",
|
||||
},
|
||||
},
|
||||
),
|
||||
@ -39,7 +38,6 @@ class TestNormalizeFinalBuild(unittest.TestCase):
|
||||
{
|
||||
"build": {
|
||||
"context": os.path.normpath(os.path.join(cwd, "./relative")),
|
||||
"dockerfile": "Dockerfile",
|
||||
},
|
||||
},
|
||||
),
|
||||
@ -48,7 +46,6 @@ class TestNormalizeFinalBuild(unittest.TestCase):
|
||||
{
|
||||
"build": {
|
||||
"context": "/workspace/absolute",
|
||||
"dockerfile": "Dockerfile",
|
||||
},
|
||||
},
|
||||
),
|
||||
@ -74,7 +71,6 @@ class TestNormalizeFinalBuild(unittest.TestCase):
|
||||
{
|
||||
"build": {
|
||||
"context": cwd,
|
||||
"dockerfile": "Dockerfile",
|
||||
},
|
||||
},
|
||||
),
|
||||
@ -135,12 +131,12 @@ class TestNormalizeFinalBuild(unittest.TestCase):
|
||||
(
|
||||
{},
|
||||
{"build": "."},
|
||||
{"build": {"context": cwd, "dockerfile": "Dockerfile"}},
|
||||
{"build": {"context": cwd}},
|
||||
),
|
||||
(
|
||||
{"build": "."},
|
||||
{},
|
||||
{"build": {"context": cwd, "dockerfile": "Dockerfile"}},
|
||||
{"build": {"context": cwd}},
|
||||
),
|
||||
(
|
||||
{"build": "/workspace/absolute"},
|
||||
@ -148,19 +144,18 @@ class TestNormalizeFinalBuild(unittest.TestCase):
|
||||
{
|
||||
"build": {
|
||||
"context": os.path.normpath(os.path.join(cwd, "./relative")),
|
||||
"dockerfile": "Dockerfile",
|
||||
}
|
||||
},
|
||||
),
|
||||
(
|
||||
{"build": "./relative"},
|
||||
{"build": "/workspace/absolute"},
|
||||
{"build": {"context": "/workspace/absolute", "dockerfile": "Dockerfile"}},
|
||||
{"build": {"context": "/workspace/absolute"}},
|
||||
),
|
||||
(
|
||||
{"build": "./relative"},
|
||||
{"build": "/workspace/absolute"},
|
||||
{"build": {"context": "/workspace/absolute", "dockerfile": "Dockerfile"}},
|
||||
{"build": {"context": "/workspace/absolute"}},
|
||||
),
|
||||
(
|
||||
{"build": {"dockerfile": "test-dockerfile"}},
|
||||
|
Loading…
Reference in New Issue
Block a user