[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2026-09-02 11:35:17 +00:00 committed by GitHub
parent 8c9e473b4e
commit c901260d81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 7 deletions

View File

@ -32,7 +32,14 @@ export const getDockerCommand = (application: ApplicationNested) => {
const dockerContextPath =
getDockerContextPath(application) || defaultContextPath;
const commandArgs = ["build", "-t", image, "-f", dockerFilePath, dockerContextPath];
const commandArgs = [
"build",
"-t",
image,
"-f",
dockerFilePath,
dockerContextPath,
];
if (dockerBuildStage) {
commandArgs.push("--target", dockerBuildStage);

View File

@ -142,10 +142,5 @@ export const getDockerContextPath = (application: Application) => {
return null;
}
return path.join(
APPLICATIONS_PATH,
appName,
"code",
dockerContextPath,
);
return path.join(APPLICATIONS_PATH, appName, "code", dockerContextPath);
};