fix: envs

This commit is contained in:
Andras Bacsai
2022-12-19 11:01:29 +01:00
parent bd7d756254
commit 295bea37bc
15 changed files with 91 additions and 153 deletions

View File

@@ -34,7 +34,7 @@ export default async function (data) {
) {
Dockerfile.forEach((line, index) => {
if (line.startsWith('FROM')) {
Dockerfile.splice(index + 1, 0, `ARG ${secret.name}=${secret.value}`);
Dockerfile.splice(index + 1, 0, `ARG ${secret.name}='${secret.value}'`);
}
});
}