Merge pull request #1846 from Dokploy/fix/dockerfile-env-vars

fix: wrap build arguments in single quotes for Docker command
This commit is contained in:
Mauricio Siu
2025-05-06 23:12:35 -06:00
committed by GitHub

View File

@@ -109,7 +109,7 @@ export const getDockerCommand = (
}
for (const arg of args) {
commandArgs.push("--build-arg", arg);
commandArgs.push("--build-arg", `'${arg}'`);
}
/*