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
commit 95a538f261
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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