feat: Make dockerfile path optional and default to "Dockerfile"

This commit is contained in:
Jiří Vrba
2026-02-20 09:19:20 +01:00
parent 3e461f642e
commit 5d3e05536e
2 changed files with 4 additions and 8 deletions

View File

@@ -127,7 +127,7 @@ export const getBuildAppDirectory = (application: Application) => {
appName,
"code",
buildPath ?? "",
dockerfile || "",
dockerfile || "Dockerfile",
);
}